mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Convert preferences & help menu to controls 2
CURA-8683
This commit is contained in:
parent
d1461c5d7f
commit
6cde2d028b
3 changed files with 53 additions and 128 deletions
23
resources/qml/Menus/HelpMenu.qml
Normal file
23
resources/qml/Menus/HelpMenu.qml
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Copyright (c) 2022 Ultimaker B.V.
|
||||
// Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
import QtQuick 2.7
|
||||
import QtQuick.Controls 2.4
|
||||
|
||||
import UM 1.5 as UM
|
||||
import Cura 1.0 as Cura
|
||||
|
||||
|
||||
Menu
|
||||
{
|
||||
id: helpMenu
|
||||
title: catalog.i18nc("@title:menu menubar:toplevel", "&Help")
|
||||
|
||||
UM.MenuItem { action: Cura.Actions.showProfileFolder }
|
||||
UM.MenuItem { action: Cura.Actions.showTroubleshooting}
|
||||
UM.MenuItem { action: Cura.Actions.documentation }
|
||||
UM.MenuItem { action: Cura.Actions.reportBug }
|
||||
MenuSeparator { }
|
||||
UM.MenuItem { action: Cura.Actions.whatsNew }
|
||||
UM.MenuItem { action: Cura.Actions.about }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue