diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2021-07-17 18:23:03 -0400 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2021-07-20 21:47:54 -0400 |
commit | 462204f3f462a5f348227379b5743405df38ff23 (patch) | |
tree | ca5b5909adfc7de22d2b759856b01bd17c5c76fc /resources/qml | |
parent | Finish converting function to property (diff) | |
download | nheko-462204f3f462a5f348227379b5743405df38ff23.tar.xz |
Fix properties
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/InviteDialog.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/qml/InviteDialog.qml b/resources/qml/InviteDialog.qml index e171808e..83471658 100644 --- a/resources/qml/InviteDialog.qml +++ b/resources/qml/InviteDialog.qml @@ -164,8 +164,8 @@ ApplicationWindow { spacing: 10 Avatar { - width: avatarSize - height: avatarSize + width: Nheko.avatarsize + height: Nheko.avatarsize userid: model.mxid url: model.avatarUrl.replace("mxc://", "image://MxcImage/") displayName: model.displayName @@ -177,13 +177,13 @@ ApplicationWindow { Label { text: model.displayName - color: TimelineManager.userColor(model ? model.mxid : "", colors.window) + color: TimelineManager.userColor(model ? model.mxid : "", Nheko.colors.window) font.pointSize: 12 } Label { text: model.mxid - color: colors.buttonText + color: Nheko.colors.buttonText font.pointSize: 10 } |