[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sun Jun 7 20:00:12 UTC 2020
vcl/source/treelist/svimpbox.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 1e2e4ea8cf8e8b1df8678daaf1ff7b51494838f0
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sun Jun 7 20:00:08 2020 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sun Jun 7 21:59:38 2020 +0200
Resolves: tdf#133744 stop processing if DoubleClickHdl consumed event
Change-Id: I69bb7d670b04b082df294d5ea56dfd6e8d6d4fe7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95742
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx
index d7199eb56f7b..fcd1487e77fb 100644
--- a/vcl/source/treelist/svimpbox.cxx
+++ b/vcl/source/treelist/svimpbox.cxx
@@ -2355,8 +2355,7 @@ bool SvImpLBox::KeyInput( const KeyEvent& rKEvt)
break;
case KEY_RETURN:
- m_pView->DoubleClickHdl();
- bKeyUsed = false;
+ bKeyUsed = !m_pView->DoubleClickHdl();
break;
case KEY_F2:
More information about the Libreoffice-commits
mailing list