summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoren De Cuyper <joren.libreoffice@telenet.be>2013-03-10 12:37:12 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-11 09:20:56 +0000
commit1272688c6001e160018dc2f64a0767730b18aca4 (patch)
tree243b872cac7f3a4de852ebaba3d64c6673519264
parent38a022ce8b2698ef4535d3487326307928c5208b (diff)
fdo#62075 Hierarchical filter hard to find
See UX-advice http://lists.freedesktop.org/archives/libreoffice-ux-advise/2013-March/001898.html and comment on bug for approval of ux-advice. Change-Id: I0e3eb178eb74476edad6aad724e1ccc2a05662da Reviewed-on: https://gerrit.libreoffice.org/2638 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
-rw-r--r--sfx2/source/dialog/templdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index b3032bc3e725..d6d1af302798 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -83,8 +83,8 @@ using namespace ::com::sun::star::uno;
static sal_uInt16 nLastItemId = USHRT_MAX;
-// filter box has maximum 12 entries visible
-#define MAX_FILTER_ENTRIES 12
+// filter box has maximum 14 entries visible
+#define MAX_FILTER_ENTRIES 14
//=========================================================================
@@ -1235,7 +1235,7 @@ void SfxCommonTemplateDialog_Impl::UpdateStyles_Impl(sal_uInt16 nFlags)
if(pTreeBox)
aFilterLb.SelectEntry(SfxResId(STR_STYLE_FILTER_HIERARCHICAL).toString());
- // show maximum 12 entries
+ // show maximum 14 entries
aFilterLb.SetDropDownLineCount( MAX_FILTER_ENTRIES );
aFilterLb.SetUpdateMode(sal_True);
}