diff options
author | Heiko Tietze <tietze.heiko@gmail.com> | 2021-02-24 12:59:26 +0100 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2021-02-26 15:17:12 +0100 |
commit | f9779894a5fdcc2c46f2d4cc306f98d460570cac (patch) | |
tree | 4703c2b6c94f1a5e3ec598a126b55918167e9e46 /sfx2 | |
parent | 32b377c8ab40daa0b58781e9573cec22943e4f37 (diff) |
Resolves tdf#139243 - UI glitch in start center
Initial focus on Recent Files
Change-Id: I8f1b49f5fdb3fdf8a84b779c1e8c4df22c3a91f3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111478
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/backingwindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/backingwindow.cxx b/sfx2/source/dialog/backingwindow.cxx index d9e2659e0fa8..630e96051150 100644 --- a/sfx2/source/dialog/backingwindow.cxx +++ b/sfx2/source/dialog/backingwindow.cxx @@ -186,7 +186,6 @@ BackingWindow::BackingWindow(vcl::Window* i_pParent) Reference<XDesktop2> xDesktop = Desktop::create( comphelper::getProcessComponentContext() ); mxDesktopDispatchProvider = xDesktop; - mxOpenButton->grab_focus(); } IMPL_LINK(BackingWindow, ClickHelpHdl, weld::Button&, rButton, void) @@ -271,6 +270,7 @@ void BackingWindow::initControls() mxAllRecentThumbnails->Reload(); mxAllRecentThumbnails->ShowTooltips( true ); mxRecentButton->set_active(true); + mxRecentButton->grab_focus(); //initialize Template view mxLocalView->Hide(); |