summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorKatarina Behrens <bubli@bubli.org>2015-02-12 22:48:39 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-02-17 10:42:12 +0000
commit0522c77fd2f979a444a0060fdd5b98d6314228f0 (patch)
treefe59a2367abc9a2a304329f1e41452206ee924f4 /chart2
parent26d9882b6144a4aaf6acf0458e09a5888dc1c8c2 (diff)
tdf#84514: don't hide grid along with checkbox if not needed
Regression from .ui migration, which unconditionally (and wrongly) hides the grid with radiobuttons. Do what the old code did - hide the whole frame iff the grid has been hidden already. Change-Id: Ia9dc8b166f4031b4c07fbb1969908d314cc3456c Reviewed-on: https://gerrit.libreoffice.org/14511 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.cxx7
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.hxx1
2 files changed, 7 insertions, 1 deletions
diff --git a/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx b/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx
index aebb5275e4a2..826eec3b08c8 100644
--- a/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx
+++ b/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx
@@ -52,6 +52,7 @@ SchOptionTabPage::SchOptionTabPage(vcl::Window* pWindow,const SfxItemSet& rInAtt
get(m_pCBConnect,"CB_CONNECTOR");
get(m_pCBAxisSideBySide,"CB_BARS_SIDE_BY_SIDE");
+ get(m_pGrpPlotOptions,"frameFL_PLOT_OPTIONS" );
get(m_pGridPlotOptions,"gridPLOT_OPTIONS");
get(m_pRB_DontPaint,"RB_DONT_PAINT");
get(m_pRB_AssumeZero,"RB_ASSUME_ZERO");
@@ -213,7 +214,11 @@ void SchOptionTabPage::Reset(const SfxItemSet* rInAttrs)
else
{
m_pCBIncludeHiddenCells->Show(false);
- m_pGridPlotOptions->Show(false);
+ // check if the radiobutton guys above
+ // are visible. If they aren't, we can
+ // as well hide the whole frame
+ if(!m_pGridPlotOptions->IsVisible())
+ m_pGrpPlotOptions->Show(false);
}
AdaptControlPositionsAndVisibility();
diff --git a/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx b/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx
index db4afb60e9fb..ff81b28b59c5 100644
--- a/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx
+++ b/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx
@@ -53,6 +53,7 @@ private: //member
CheckBox* m_pCBConnect;
CheckBox* m_pCBAxisSideBySide;
+ VclFrame* m_pGrpPlotOptions;
VclGrid* m_pGridPlotOptions;
RadioButton* m_pRB_DontPaint;
RadioButton* m_pRB_AssumeZero;