diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-02-11 14:54:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-02-11 17:53:51 +0100 |
commit | a4b8925e57fa727c980157ebeef83100386c7444 (patch) | |
tree | 4d56de3be74479b2d13c5fe3cc58f3f1fbed251a /dbaccess | |
parent | 9d5005ac7bb27fb336bc4b593936fe2230b23eac (diff) |
Resolves: tdf#147325 "Edit in SQL View" should accept tab
Change-Id: I286281c317c30e5c189747f2d4844a0d5dd0828f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129819
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/QueryTextView.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dbaccess/source/ui/querydesign/QueryTextView.cxx b/dbaccess/source/ui/querydesign/QueryTextView.cxx index 9805c2aca62e..daeb6ee14f7d 100644 --- a/dbaccess/source/ui/querydesign/QueryTextView.cxx +++ b/dbaccess/source/ui/querydesign/QueryTextView.cxx @@ -42,6 +42,7 @@ OQueryTextView::OQueryTextView(OQueryContainerWindow* pParent, OQueryController& m_xSQL->DisableInternalUndo(); m_xSQL->SetHelpId(HID_CTL_QRYSQLEDIT); m_xSQL->SetModifyHdl(LINK(this, OQueryTextView, ModifyHdl)); + m_xSQL->SetAcceptsTab(true); m_timerUndoActionCreation.SetTimeout(1000); m_timerUndoActionCreation.SetInvokeHandler(LINK(this, OQueryTextView, OnUndoActionTimer)); |