[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - sfx2/source
Tor Lillqvist (via logerrit)
logerrit at kemper.freedesktop.org
Sat Feb 29 17:25:33 UTC 2020
sfx2/source/sidebar/SidebarController.cxx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
New commits:
commit 6a031edca26cadd5917a94de2d3b6a706197a8fc
Author: Tor Lillqvist <tml at collabora.com>
AuthorDate: Fri Feb 28 17:02:30 2020 +0200
Commit: Ashod Nakashian <ashnakash at gmail.com>
CommitDate: Sat Feb 29 18:25:02 2020 +0100
tdf#130348: Add special case for ChartDeck, too
Change-Id: Idf6cc1469f074debfc4351a58826a3a7411391ca
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89722
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
Reviewed-by: Tor Lillqvist <tml at collabora.com>
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index 6f8d633f7914..c885066ef5c9 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -440,7 +440,9 @@ void SidebarController::NotifyResize()
// it's the PropertyDeck that really has many panes
// that can collapse or expand. For others, limit
// the height to something sensible.
- const sal_Int32 nExtHeight = (msCurrentDeckId == "PropertyDeck" ? 2000 : 600);
+ // tdf#130348: Add special case for ChartDeck, too.
+ const sal_Int32 nExtHeight = (msCurrentDeckId == "PropertyDeck" ? 2000 :
+ (msCurrentDeckId == "ChartDeck" ? 1200 : 600));
// No TabBar in LOK (use nWidth in full).
mpCurrentDeck->setPosSizePixel(nDeckX, 0, nWidth, nExtHeight);
}
More information about the Libreoffice-commits
mailing list