sw/source/ui/docvw/SidebarWin.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ddbcb6687722314b37cfda3170596ac7a4f69602
Author: Ivan Timofeev <timofeev....@gmail.com>
Date:   Tue Sep 17 18:34:17 2013 +0400

    fdo#41833: fix visual cursor position after resizing
    
    SetOutputArea updates a cursor position, SetVisArea doesn't => call 
SetOutputArea
    after SetVisArea.
    
    Change-Id: Ie8f079cb3d567f759c84587a8072b98fab43588b

diff --git a/sw/source/ui/docvw/SidebarWin.cxx 
b/sw/source/ui/docvw/SidebarWin.cxx
index 4a0ae75..4cf128a 100644
--- a/sw/source/ui/docvw/SidebarWin.cxx
+++ b/sw/source/ui/docvw/SidebarWin.cxx
@@ -597,11 +597,11 @@ void SwSidebarWin::DoResize()
     }
 
     mpOutliner->SetPaperSize( PixelToLogic( Size(aWidth,aHeight) ) ) ;
-    mpOutlinerView->SetOutputArea( PixelToLogic( Rectangle(0,0,aWidth,aHeight) 
) );
     if (!mpVScrollbar->IsVisible())
     {   // if we do not have a scrollbar anymore, we want to see the complete 
text
         mpOutlinerView->SetVisArea( PixelToLogic( 
Rectangle(0,0,aWidth,aHeight) ) );
     }
+    mpOutlinerView->SetOutputArea( PixelToLogic( Rectangle(0,0,aWidth,aHeight) 
) );
 
     if (!Application::GetSettings().GetLayoutRTL())
     {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to