diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-05-26 16:17:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-05-26 20:23:16 +0200 |
commit | 7bd3f4a0724b11c18d45937078e8c2968e2b6d7f (patch) | |
tree | a76d092520f09a23d204d077e5d544a98da120ff | |
parent | 82b773b43291024e9e854c9371016236e58f550c (diff) |
emit activate-row in vcl treeview on return
to align it with the gtk one which does this
Change-Id: Id439fe684f263f59285ba9291fc803f88309c066
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94875
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/source/treelist/svimpbox.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx index b2d4b0dc5c42..2fc2d0bf9d3c 100644 --- a/vcl/source/treelist/svimpbox.cxx +++ b/vcl/source/treelist/svimpbox.cxx @@ -2368,8 +2368,7 @@ bool SvImpLBox::KeyInput( const KeyEvent& rKEvt) break; case KEY_RETURN: - if (m_pView->mbActivateOnSingleClick) - m_pView->DoubleClickHdl(); + m_pView->DoubleClickHdl(); bKeyUsed = false; break; |