Removed the expandSidebar action

Since we don't even have a sidebar anymore, there is no point in expanding it.
This commit is contained in:
Jaime van Kessel 2018-10-15 14:23:42 +02:00
parent 4e432a5f06
commit 1e3a9ff57c
2 changed files with 2 additions and 13 deletions

View file

@ -23,8 +23,6 @@ Item
property alias viewLeftSideCamera: viewLeftSideCameraAction;
property alias viewRightSideCamera: viewRightSideCameraAction;
property alias expandSidebar: expandSidebarAction;
property alias deleteSelection: deleteSelectionAction;
property alias centerSelection: centerSelectionAction;
property alias multiplySelection: multiplySelectionAction;
@ -415,11 +413,4 @@ Item
text: catalog.i18nc("@action:menu", "Browse packages...")
iconName: "plugins_browse"
}
Action
{
id: expandSidebarAction;
text: catalog.i18nc("@action:inmenu menubar:view","Expand/Collapse Sidebar");
shortcut: "Ctrl+E";
}
}

View file

@ -44,7 +44,8 @@ Menu
MenuItem { action: Cura.Actions.viewRightSideCamera; }
}
MenuSeparator {
MenuSeparator
{
visible: UM.Preferences.getValue("cura/use_multi_build_plate")
}
@ -72,8 +73,5 @@ Menu
MenuSeparator {}
MenuItem { action: Cura.Actions.expandSidebar; }
MenuSeparator {}
MenuItem { action: Cura.Actions.toggleFullScreen; }
}