diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-06-19 21:33:10 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-06-19 21:33:10 +0200 |
commit | 15ce0211da3f63b96424994dc803de46454dffd5 (patch) | |
tree | dd8fda6da73e24a3780732ef3bb93b8d38528d91 /resources/qml/voip/PlaceCall.qml | |
parent | More linter fixes (diff) | |
download | nheko-15ce0211da3f63b96424994dc803de46454dffd5.tar.xz |
Fix some sizes in layouts
Diffstat (limited to '')
-rw-r--r-- | resources/qml/voip/PlaceCall.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/voip/PlaceCall.qml b/resources/qml/voip/PlaceCall.qml index 2d4c46f8..c0724828 100644 --- a/resources/qml/voip/PlaceCall.qml +++ b/resources/qml/voip/PlaceCall.qml @@ -67,8 +67,8 @@ Popup { Avatar { Layout.rightMargin: cameraCombo.visible ? 16 : 64 - width: Nheko.avatarSize - height: Nheko.avatarSize + Layout.preferredWidth: Nheko.avatarSize + Layout.preferredHeight: Nheko.avatarSize url: room.roomAvatarUrl.replace("mxc://", "image://MxcImage/") displayName: room.roomName roomid: room.roomId |