summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-10-01 14:47:42 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-10-01 14:47:42 +0200
commit30882d4aa9bf5d91f0934336d6c775e28ec0e908 (patch)
treef780997ce5ea15c3a91a3f7e293e8757c12f76fe
parentLoad components on demand (diff)
downloadnheko-30882d4aa9bf5d91f0934336d6c775e28ec0e908.tar.xz
Fix wrong file urls
-rw-r--r--resources/qml/Root.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml

index 4441b0c7..ce24ec39 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml
@@ -96,7 +96,7 @@ Pane { Shortcut { sequence: "Ctrl+K" onActivated: { - var quickSwitch = Qt.createComponent("qrc:/qml/dialogs/QuickSwitcher.qml").createObject(timelineRoot); + var quickSwitch = Qt.createComponent("qrc:/qml/QuickSwitcher.qml").createObject(timelineRoot); quickSwitch.open(); destroyOnClosed(quickSwitch); } @@ -142,7 +142,7 @@ Pane { Connections { function onNewDeviceVerificationRequest(flow) { - var dialog = Qt.createComponent("qrc:/qml/dialogs/DeviceVerification.qml").createObject(timelineRoot, { + var dialog = Qt.createComponent("qrc:/qml/device-verification/DeviceVerification.qml").createObject(timelineRoot, { "flow": flow }); dialog.show(); @@ -234,7 +234,7 @@ Pane { Connections { function onNewInviteState() { if (CallManager.haveCallInvite && Settings.mobileMode) { - var dialog = Qt.createComponent("qrc:/qml/dialogs/CallInvite.qml").createObject(timelineRoot); + var dialog = Qt.createComponent("qrc:/qml/voip/CallInvite.qml").createObject(timelineRoot); dialog.open(); destroyOnClose(dialog); }