Is there a keyboard shortcut to toggle the display of all toolbars?
I know of Ctrl-Shift-J
to toggle Full Screen mode, which has no toolbars, but I need a non-fullscreen window to toggle toolbars. Thank you.
LibreOffice 5.3, CentOS 7.3, KDE 4.
Is there a keyboard shortcut to toggle the display of all toolbars?
I know of Ctrl-Shift-J
to toggle Full Screen mode, which has no toolbars, but I need a non-fullscreen window to toggle toolbars. Thank you.
LibreOffice 5.3, CentOS 7.3, KDE 4.
Hello @dotancohen,
You could use the following macro and connect your own shortcut key to it:
Sub ToggleGUI()
Dim bFrameGUIoff As Boolean
bFrameGUIoff = ThisComponent.CurrentController.Frame.LayoutManager.HideCurrentUI
ThisComponent.CurrentController.Frame.LayoutManager.HideCurrentUI = Not bFrameGUIoff
End Sub
Thank you, this is a terrific, detailed answer. I have not yet enough rep to upvote, but of course I select it as the selected answer. As soon as I have the rep I’ll upvote as well.
Again, thank you!
Worked like a charm. Will upvote as soon as I got rep to do so.