diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2022-04-21 15:14:49 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2022-04-21 18:03:43 +0200 |
commit | c09f59eb6173a4a53a2d40ed80aebed18e3882ac (patch) | |
tree | 632015ac530166b467551cd7cb6ece4470bf588b /sfx2 | |
parent | e31cf19e5f5bcdc9e96d1ecd896a611ea035a934 (diff) |
Drop special-casing for Chart's sidebar property deck
Introduced in commit b33b2afe6a8b4224450da7c686beb81dbf5cd24a
Author Markus Mohrhard <markus.mohrhard@googlemail.com>
Date Thu Jul 09 20:39:06 2015 +0200
big step towards real chart sidebar
later in commit da57c32c5cb27eee38e32d10232b31d459c399df
Author Tor Lillqvist <tml@collabora.com>
Date Fri Feb 28 17:02:30 2020 +0200
tdf#130348: Add special case for ChartDeck, too
and then in commit ff23d87cb00388095a94b90e061564fc179e1823
Author Mert Tumer <mert.tumer@collabora.com>
Date Fri May 08 17:23:12 2020 +0300
mobile: fix calc chart wizard properties is not shown
The normal PropertyDeck can host all the chart-specific panels,
and the other decks that had "all" application context, but are
not needed for charts, have their context fixed.
This cleanup is needed for a following introduction of sidebar
in Math.
Change-Id: I5bb24d52b8dec2133213d7dddfeb91359ed4cb4b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133262
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/sidebar/Context.cxx | 9 | ||||
-rw-r--r-- | sfx2/source/sidebar/SidebarController.cxx | 4 |
2 files changed, 2 insertions, 11 deletions
diff --git a/sfx2/source/sidebar/Context.cxx b/sfx2/source/sidebar/Context.cxx index 8a254ebbe2f7..2065fbd0473b 100644 --- a/sfx2/source/sidebar/Context.cxx +++ b/sfx2/source/sidebar/Context.cxx @@ -46,14 +46,7 @@ Context::Context ( sal_Int32 Context::EvaluateMatch ( const Context& rOther) const { - bool bApplicationNameIsAny (rOther.msApplication == AnyApplicationName); - - // special case for charts which use a whole own set of decks - if (msApplication == "com.sun.star.chart2.ChartDocument") - { - bApplicationNameIsAny = false; - } - + const bool bApplicationNameIsAny (rOther.msApplication == AnyApplicationName); if (rOther.msApplication == msApplication || bApplicationNameIsAny) { // Application name matches. diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx index 898898a09d4a..a1c6c211d794 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -466,9 +466,7 @@ 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. - // tdf#130348: Add special case for ChartDeck, too. - const sal_Int32 nExtHeight = (msCurrentDeckId == "PropertyDeck" ? 2000 : - (msCurrentDeckId == "ChartDeck" ? 1200 : 600)); + const sal_Int32 nExtHeight = (msCurrentDeckId == "PropertyDeck" ? 2000 : 600); // No TabBar in LOK (use nWidth in full). mpCurrentDeck->setPosSizePixel(nDeckX, 0, nWidth, nExtHeight); } |