diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2014-10-24 01:35:56 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2014-10-24 01:47:46 +0300 |
commit | 6ba8b7f5eacac969e4781d63718083a05491b1bc (patch) | |
tree | 18a46ff17e31e29a372e1650828690da7433b137 | |
parent | 714c5df9b10cd6084fff35a0cd40d330a88f53e4 (diff) |
fdo#73617 sc: Don't update the gui during live preview
Apart from (apparently) being not necessary, it creates
bugs like this one. If the selection consist of multiple
fonts, it leads to clearing the font name box, which in
turn leads to scrolling the list up.
Change-Id: I8e702b9b4d4a1f7ad1ded5de1a5e162f039f6d4d
-rw-r--r-- | sc/source/ui/view/viewfunc.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx index 6a537b8616a3..479b8e33ad6a 100644 --- a/sc/source/ui/view/viewfunc.cxx +++ b/sc/source/ui/view/viewfunc.cxx @@ -2787,7 +2787,6 @@ void ScViewFunc::UpdateSelectionArea( const ScMarkData& rSel, ScPatternAttr* pAt nEndCol, nEndRow, nEndTab, PAINT_GRID, nExtFlags | SC_PF_TESTMERGE ); ScTabViewShell* pTabViewShell = GetViewData().GetViewShell(); - pTabViewShell->CellContentChanged(); pTabViewShell->AdjustBlockHeight(false, const_cast<ScMarkData*>(&rSel)); } |