Remove qmldir from qml resources and use proper Cura namespace for everything

Since we now properly expose all the qml files in the Cura namespace
we should also use it from there.
This commit is contained in:
Arjen Hiemstra 2016-05-31 18:06:20 +02:00
parent f21e48adbb
commit 3b51c3d339
4 changed files with 64 additions and 72 deletions

View file

@ -9,8 +9,6 @@ import QtQuick.Layouts 1.1
import UM 1.2 as UM
import Cura 1.0 as Cura
import ".."
ScrollView
{
id: base;
@ -134,7 +132,7 @@ ScrollView
//: Settings context menu action
text: catalog.i18nc("@action:menu", "Configure setting visiblity...");
onTriggered: Actions.configureSettingVisibility.trigger(contextMenu);
onTriggered: Cura.Actions.configureSettingVisibility.trigger(contextMenu);
}
}
}