summary refs log tree commit diff
path: root/resources/qml/RoomList.qml
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/RoomList.qml')
-rw-r--r--resources/qml/RoomList.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml
index 615c67fa..92e7ef6d 100644
--- a/resources/qml/RoomList.qml
+++ b/resources/qml/RoomList.qml
@@ -126,7 +126,7 @@ Page {
                     width: 22
 
                     onClicked: {
-                        var component = Qt.createComponent("qrc:/qml/QuickSwitcher.qml");
+                        var component = Qt.createComponent("qrc:/resources/qml/QuickSwitcher.qml");
                         if (component.status == Component.Ready) {
                             var quickSwitch = component.createObject(timelineRoot);
                             quickSwitch.open();
@@ -162,7 +162,7 @@ Page {
 
             function openUserProfile() {
                 Nheko.updateUserProfile();
-                var component = Qt.createComponent("qrc:/qml/dialogs/UserProfile.qml");
+                var component = Qt.createComponent("qrc:/resources/qml/dialogs/UserProfile.qml");
                 if (component.status == Component.Ready) {
                     var userProfile = component.createObject(timelineRoot, {
                             "profile": Nheko.currentUser