diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-11-15 15:01:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-11-15 18:30:36 +0100 |
commit | ee82c5b96898bb73f5df6fdda7da1f04c3c375cc (patch) | |
tree | 7ba05e30048eb11ef3dd3b46032808d791bd0068 /sd | |
parent | 48dcf7837e0ac32c939a499c59aba82f97b4a612 (diff) |
impress constantly trying to create an internal SidebarView
I think since the sidebar was integrated that this is dead
code belonging to the sidebars impress-only ancestor
Nothing creates the SidebarView[1], so attempt fails, a failed attempt
is scheduled in to try again on a configuration update timer
configuration update timer fails to load missing SidebarView
but broadcasts configuration update on each attemp
when the presenter console gets a configuration update it
refreshes its ui by loading the current slide
if the current slide has notes and those notes are long enough
to be scrolled and the user has scrolled to the end, then when the
slide is reloaded the notes are at the top again.
So presenter console notes scroll to the top after 5 seconds because
the configuration update fired, because the previous configuration
update didn't work.
This is old lady that swallowed a fly level stuff
[1] and I think its a typo here anyway and msSidebarViewURL should have
been msSidebarPaneURL
Change-Id: Ibfff16bb1092a49a8a54ca9697b5dc3819448af3
Reviewed-on: https://gerrit.libreoffice.org/44766
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/framework/module/ImpressModule.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sd/source/ui/framework/module/ImpressModule.cxx b/sd/source/ui/framework/module/ImpressModule.cxx index 640783c41654..bf2ee2472c93 100644 --- a/sd/source/ui/framework/module/ImpressModule.cxx +++ b/sd/source/ui/framework/module/ImpressModule.cxx @@ -43,9 +43,6 @@ void ImpressModule::Initialize (Reference<frame::XController> const & rxControll new SlideSorterModule( rxController, FrameworkHelper::msLeftImpressPaneURL); - new ToolPanelModule( - rxController, - FrameworkHelper::msSidebarViewURL); new ToolBarModule(rxController); new ShellStackGuard(rxController); } |