diff options
author | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2019-12-03 09:23:27 -0500 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2019-12-16 17:30:00 +0000 |
commit | 6ef7133306e4563c2bb106a8c8c6840033e0bcae (patch) | |
tree | c64dd5e89d5c7cc9f04d31d6c7d982f3afeeb042 /sfx2 | |
parent | 98ee2b5080ac88bd4c09ce330c9baae924d5be16 (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 bb6a08e48d8e..3aba87450c4f 100644 --- a/sfx2/source/sidebar/SidebarDockingWindow.cxx +++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx @@ -195,8 +195,9 @@ void SidebarDockingWindow::NotifyResize() LOKClose(); SetLOKNotifier(pCurrentView); - mpIdleNotify->Start(); } + + mpIdleNotify->Start(); } } |