summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Monastirsky <momonasmon@gmail.com>2015-08-30 22:35:00 +0300
committerMaxim Monastirsky <momonasmon@gmail.com>2015-08-30 23:02:44 +0300
commite38c4105077b396b0b53e0296ae9cf142f51dd52 (patch)
tree6c0a05904f1d57fbe83a4f43bae791a4727cffc5
parent41c133250610243ed07bf294e4cee0ca9462be42 (diff)
tdf#83546 Expand the sidebar if it's hidden
Change-Id: I92620cb1439bd13efcdbafcdc584abd8d7bb4345
-rw-r--r--sfx2/source/sidebar/SidebarController.cxx23
1 files changed, 11 insertions, 12 deletions
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index afb844936347..a45f83e8a8a5 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -481,20 +481,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);