summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoren De Cuyper <joren.libreoffice@telenet.be>2013-03-10 12:48:30 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-11 08:50:23 +0000
commita9e2b90fd4458852e745ec5eca127549452617b7 (patch)
tree247b3cd1135250340256bdb0a23e819c25878267
parenta7eb431731761e72a343c29276cfbbea0e6f01ec (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: Ie5af5ec141b148e6253d0ffa9b546d30994c6dd6 Reviewed-on: https://gerrit.libreoffice.org/2639 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 0af6d770116f..a81c27dd5350 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
//=========================================================================
@@ -1281,7 +1281,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);
}