diff options
author | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2019-12-03 09:23:27 -0500 |
---|---|---|
committer | Ashod Nakashian <ashnakash@gmail.com> | 2019-12-03 15:48:04 +0100 |
commit | 10566937727caf639468d03e4ade5cfc9744f93f (patch) | |
tree | f6252966d606ea6f9eff7a53d33022eff9d5a4bb /sfx2 | |
parent | e8fc0d70d59e0fc3f1aaf3627fa5d38f4ee7d048 (diff) |
sidebar: always trigger LOK notifications on resize
This is critical for the Mobile Wizard, which
refreshes by pushing, not pulling (following invalidations).
Change-Id: Ie75c2f5c07798fa89c21901d6d0233c42768ea8d
Reviewed-on: https://gerrit.libreoffice.org/84359
Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Tested-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/sidebar/SidebarDockingWindow.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/source/sidebar/SidebarDockingWindow.cxx b/sfx2/source/sidebar/SidebarDockingWindow.cxx index 0b7ee183f5c1..8498fe295144 100644 --- a/sfx2/source/sidebar/SidebarDockingWindow.cxx +++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx @@ -192,8 +192,9 @@ void SidebarDockingWindow::NotifyResize() LOKClose(); SetLOKNotifier(pCurrentView); - mpIdleNotify->Start(); } + + mpIdleNotify->Start(); } } |