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
b54c1a53
Kaydet (Commit)
b54c1a53
authored
Eyl 01, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Repaint grid view when the visible area changes.
Change-Id: I2fe1e103b3d7c6a51a2f845e27fee0cfb6309847
üst
0ee265e8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
scmod.cxx
sc/source/ui/app/scmod.cxx
+1
-4
gridwin2.cxx
sc/source/ui/view/gridwin2.cxx
+1
-1
tabview4.cxx
sc/source/ui/view/tabview4.cxx
+3
-0
No files found.
sc/source/ui/app/scmod.cxx
Dosyayı görüntüle @
b54c1a53
...
...
@@ -1229,10 +1229,7 @@ void ScModule::ModifyOptions( const SfxItemSet& rOptSet )
if
(
pViewSh
)
pViewSh
->
EnableAutoSpell
(
bDoAutoSpell
);
//#92038#; don't set document modified, because this flag is no longer saved
// pDocSh->SetDocumentModified();
bRepaint
=
sal_True
;
// weil HideAutoSpell evtl. ungueltig
bRepaint
=
true
;
// weil HideAutoSpell evtl. ungueltig
//! alle Views painten ???
}
}
...
...
sc/source/ui/view/gridwin2.cxx
Dosyayı görüntüle @
b54c1a53
...
...
@@ -605,7 +605,7 @@ bool ScGridWindow::UpdateVisibleRange()
if
(
nYBottom
>
MAXROW
)
nYBottom
=
MAXROW
;
// Store the current visible range.
bool
bChanged
=
maVisibleRange
.
set
(
nPosX
,
nPosY
,
nXRight
,
nYBottom
);
bool
bChanged
=
maVisibleRange
.
set
(
nPosX
,
nPosY
,
nXRight
,
nYBottom
);
if
(
bChanged
)
{
if
(
mpSpellCheckCxt
)
...
...
sc/source/ui/view/tabview4.cxx
Dosyayı görüntüle @
b54c1a53
...
...
@@ -428,7 +428,10 @@ void ScTabView::UpdateScrollBars()
if
(
aViewData
.
IsActive
()
)
{
if
(
UpdateVisibleRange
())
{
SC_MOD
()
->
AnythingChanged
();
// if visible area has changed
PaintGrid
();
}
}
}
...
...
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