[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - sfx2/source

Maxim Monastirsky momonasmon at gmail.com
Wed Sep 2 04:18:30 PDT 2015


 sfx2/source/sidebar/SidebarController.cxx |   23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

New commits:
commit 6390640fcce39eaf7612bcbd8f61e2570c3e50e7
Author: Maxim Monastirsky <momonasmon at gmail.com>
Date:   Sun Aug 30 22:35:00 2015 +0300

    tdf#83546 Expand the sidebar if it's hidden
    
    Change-Id: I92620cb1439bd13efcdbafcdc584abd8d7bb4345
    (cherry picked from commit e38c4105077b396b0b53e0296ae9cf142f51dd52)
    Reviewed-on: https://gerrit.libreoffice.org/18245
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index 4115e88..9afa3f5 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -455,20 +455,19 @@ void SidebarController::UpdateConfigurations()
 void SidebarController::OpenThenSwitchToDeck (
     const ::rtl::OUString& rsDeckId)
 {
-    // fdo#67627 Clicking a second time on a Deck icon will close the Deck
-    if (IsDeckVisible(rsDeckId))
+    SfxSplitWindow* pSplitWindow = GetSplitWindow();
+    if ( pSplitWindow && !pSplitWindow->IsFadeIn() )
+        // tdf#83546 Collapsed sidebar should expand first
+        pSplitWindow->FadeIn();
+    else if ( IsDeckVisible( rsDeckId ) )
     {
-        // fdo#88241 Summoning an undocked sidebar a second time should close sidebar
-        if (!GetSplitWindow())
-        {
-            mpParentWindow->Close();
-            return;
-        }
-        else
-        {
+        if ( pSplitWindow )
+            // tdf#67627 Clicking a second time on a Deck icon will close the Deck
             RequestCloseDeck();
-            return;
-        }
+        else
+            // tdf#88241 Summoning an undocked sidebar a second time should close sidebar
+            mpParentWindow->Close();
+        return;
     }
     RequestOpenDeck();
     SwitchToDeck(rsDeckId);


More information about the Libreoffice-commits mailing list