Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
484cee0e
Kaydet (Commit)
484cee0e
authored
Ara 09, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
writer: Defer update, until post first render to avoid flicker.
Change-Id: Ib16f5b345901adc7036a8a90d0f46aa3499d66ae
üst
d4d24786
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
conttree.hxx
sw/source/uibase/inc/conttree.hxx
+1
-0
content.cxx
sw/source/uibase/utlui/content.cxx
+9
-1
No files found.
sw/source/uibase/inc/conttree.hxx
Dosyayı görüntüle @
484cee0e
...
...
@@ -137,6 +137,7 @@ protected:
SvTreeListEntry
*&
rpNewParent
,
sal_uLong
&
rNewChildPos
)
override
;
virtual
void
Paint
(
vcl
::
RenderContext
&
rRenderContext
,
const
Rectangle
&
rRect
)
override
;
virtual
void
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
override
;
void
EditEntry
(
SvTreeListEntry
*
pEntry
,
EditEntryMode
nMode
);
...
...
sw/source/uibase/utlui/content.cxx
Dosyayı görüntüle @
484cee0e
...
...
@@ -2424,10 +2424,18 @@ void SwContentTree::ExecCommand(sal_uInt16 nCmd, bool bModifier)
void
SwContentTree
::
ShowTree
()
{
m_aUpdTimer
.
Start
();
SvTreeListBox
::
Show
();
}
void
SwContentTree
::
Paint
(
vcl
::
RenderContext
&
rRenderContext
,
const
Rectangle
&
rRect
)
{
// Start the update timer on the first paint; avoids
// flicker on the first reveal.
m_aUpdTimer
.
Start
();
SvTreeListBox
::
Paint
(
rRenderContext
,
rRect
);
}
// folded together will not be glidled
void
SwContentTree
::
HideTree
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment