mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 00:34:26 +08:00

I didn't realise that Cura already had a menu item. To prevent Confusion, i've changed Cura.MenuItem to use UM.MenuItem and let all other menus use Cura.MenuItem
23 lines
646 B
QML
23 lines
646 B
QML
// 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")
|
|
|
|
Cura.MenuItem { action: Cura.Actions.showProfileFolder }
|
|
Cura.MenuItem { action: Cura.Actions.showTroubleshooting}
|
|
Cura.MenuItem { action: Cura.Actions.documentation }
|
|
Cura.MenuItem { action: Cura.Actions.reportBug }
|
|
Cura.MenuSeparator { }
|
|
Cura.MenuItem { action: Cura.Actions.whatsNew }
|
|
Cura.MenuItem { action: Cura.Actions.about }
|
|
} |