summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Luth <justin_luth@sil.org>2022-05-05 21:08:24 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2022-05-06 15:55:45 +0200
commitba9e78e00fda5438fa743dd44f4a3b2f854cf61f (patch)
tree9342067e8726b7eefe317ba5e43c80d7a38902c1
parent4d71b9ea67bbb54ebad6127b2de740f1b6d4b4f0 (diff)
tdf#91035 sw page-style UI: All styles shown, not hidden
The first entry in the list (All styles) is what is shown by default, so that means that the 0th entry should be pre-selected, not the 1st. Change-Id: I4c204fda41a0551b9f30724df361e4f797a87325 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133911 Tested-by: Jenkins Reviewed-by: Justin Luth <jluth@mail.com> (cherry picked from commit 3a79bd968869f782b8540aea6598c1f8ee14cced) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133862 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r--sw/source/ui/chrdlg/swuiccoll.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/chrdlg/swuiccoll.cxx b/sw/source/ui/chrdlg/swuiccoll.cxx
index c0953f830ff5..2b1aca870165 100644
--- a/sw/source/ui/chrdlg/swuiccoll.cxx
+++ b/sw/source/ui/chrdlg/swuiccoll.cxx
@@ -86,7 +86,7 @@ SwCondCollPage::SwCondCollPage(weld::Container* pPage, weld::DialogController* p
}
}
- m_xFilterLB->set_active(1);
+ m_xFilterLB->set_active(0);
m_xTbLinks->show();
}