summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-13 15:58:57 +0000
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-12-16 07:21:04 +0100
commit8de197a982f6b588ee65ab5e2f4bdb879e73e51f (patch)
tree1db33c082b3f4d666e2afdd9f83d2074a9432eb8 /vcl
parentb26de926aad67b266509e75829061417d7320ec7 (diff)
tdf#127148 select-all on tabbing into version box in help->about
and allow select-all in readonly multiline edits too. Arguably this might be a universal settings, but just enable it for the about dialog for now. Change-Id: Ic2e64fe26593adf4ae630d1be1a7b196a5a0216c Reviewed-on: https://gerrit.libreoffice.org/85128 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/edit/vclmedit.cxx2
-rw-r--r--vcl/source/window/aboutdialog.cxx8
2 files changed, 9 insertions, 1 deletions
diff --git a/vcl/source/edit/vclmedit.cxx b/vcl/source/edit/vclmedit.cxx
index 0225f79d487e..e21d5c4c8f57 100644
--- a/vcl/source/edit/vclmedit.cxx
+++ b/vcl/source/edit/vclmedit.cxx
@@ -852,7 +852,7 @@ void TextWindow::GetFocus()
if ( !mbActivePopup )
{
bool bGotoCursor = !mpExtTextView->IsReadOnly();
- if ( mbFocusSelectionHide && IsReallyVisible() && !mpExtTextView->IsReadOnly()
+ if ( mbFocusSelectionHide && IsReallyVisible()
&& ( mbSelectOnTab &&
(!mbInMBDown || ( GetSettings().GetStyleSettings().GetSelectionOptions() & SelectionOptions::Focus ) )) )
{
diff --git a/vcl/source/window/aboutdialog.cxx b/vcl/source/window/aboutdialog.cxx
index 879c94d2910f..882b47b09790 100644
--- a/vcl/source/window/aboutdialog.cxx
+++ b/vcl/source/window/aboutdialog.cxx
@@ -29,6 +29,14 @@ AboutDialog::AboutDialog(vcl::Window* pParent, WinBits nStyle, Dialog::InitFlag
m_xBuilder->get(m_xCopyrightText, "copyright");
m_xBuilder->get(m_xBuildIdLink, "buildIdLink");
+ // tdf#127148 so tabbing into the widget will auto select-all
+ AllSettings aSettings = m_xVersion->GetSettings();
+ StyleSettings aStyleSettings = aSettings.GetStyleSettings();
+ aStyleSettings.SetSelectionOptions(aStyleSettings.GetSelectionOptions()
+ | SelectionOptions::Focus);
+ aSettings.SetStyleSettings(aStyleSettings);
+ m_xVersion->SetSettings(aSettings, true);
+
#ifndef MACOSX
m_xVersion->RequestDoubleBuffering(true);
#endif