diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-04-04 19:29:08 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-04-04 19:29:08 +0200 |
commit | c1c02b4aaecad9a55cc897f0809cabfcc0192b7f (patch) | |
tree | ae5d63e1462df9928372dd2661222a7ccd3e2fc4 /resources/qml/dialogs/UserProfile.qml | |
parent | Allow querying your status message over dbus (diff) | |
download | nheko-c1c02b4aaecad9a55cc897f0809cabfcc0192b7f.tar.xz |
Make the profile buttons a bit bigger
Diffstat (limited to '')
-rw-r--r-- | resources/qml/dialogs/UserProfile.qml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/resources/qml/dialogs/UserProfile.qml b/resources/qml/dialogs/UserProfile.qml index 792dec00..95800746 100644 --- a/resources/qml/dialogs/UserProfile.qml +++ b/resources/qml/dialogs/UserProfile.qml @@ -238,8 +238,8 @@ ApplicationWindow { } EncryptionIndicator { - Layout.preferredHeight: 16 - Layout.preferredWidth: 16 + Layout.preferredHeight: 32 + Layout.preferredWidth: 32 encrypted: profile.userVerificationEnabled trust: profile.userVerified Layout.alignment: Qt.AlignHCenter @@ -265,6 +265,8 @@ ApplicationWindow { spacing: Nheko.paddingSmall ImageButton { + Layout.preferredHeight: 24 + Layout.preferredWidth: 24 image: ":/icons/icons/ui/chat.svg" hoverEnabled: true ToolTip.visible: hovered @@ -273,6 +275,8 @@ ApplicationWindow { } ImageButton { + Layout.preferredHeight: 24 + Layout.preferredWidth: 24 image: ":/icons/icons/ui/round-remove-button.svg" hoverEnabled: true ToolTip.visible: hovered @@ -282,6 +286,8 @@ ApplicationWindow { } ImageButton { + Layout.preferredHeight: 24 + Layout.preferredWidth: 24 image: ":/icons/icons/ui/ban.svg" hoverEnabled: true ToolTip.visible: hovered @@ -291,6 +297,8 @@ ApplicationWindow { } ImageButton { + Layout.preferredHeight: 24 + Layout.preferredWidth: 24 image: ":/icons/icons/ui/refresh.svg" hoverEnabled: true ToolTip.visible: hovered |