summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2018-04-03 10:27:16 +0200
committerJan Holesovsky <kendy@collabora.com>2018-05-22 12:06:24 +0200
commit54b5a7a918c72f03a610496c03ce455dbbcece85 (patch)
treea2169723eff4beb9d68406342a35fa2fe8cb29b4 /cui
parent269043530023a07085e0a695a7a9a2acaf4daf37 (diff)
tdf#116733: Fix expanding in the entries in "Open expert configuration".
The DoubleClickHdl()'s return value does not mean "was handled", but actually "is there anything more to be done". Change-Id: Ideeee31db648829546a713148124e3d366941b9a Reviewed-on: https://gerrit.libreoffice.org/52292 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jan Holesovsky <kendy@collabora.com> (cherry picked from commit 3af6be55ae1dabb1b72cbb4c57cca33c28b347f8) Reviewed-on: https://gerrit.libreoffice.org/52304 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optaboutconfig.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx
index b848e5da2615..86eb18df6eed 100644
--- a/cui/source/options/optaboutconfig.cxx
+++ b/cui/source/options/optaboutconfig.cxx
@@ -570,7 +570,7 @@ IMPL_LINK_NOARG( CuiAboutConfigTabPage, ResetBtnHdl_Impl, Button*, void )
IMPL_LINK_NOARG( CuiAboutConfigTabPage, DoubleClickHdl_Impl, SvTreeListBox*, bool )
{
StandardHdl_Impl(nullptr);
- return false;
+ return true;
}
IMPL_LINK_NOARG( CuiAboutConfigTabPage, StandardHdl_Impl, Button*, void )