From 9b43e7368f1ccf818b92f43182536414f5c4d4ca Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Wed, 1 Mar 2017 14:06:25 +0900 Subject: [PATCH] Fix for icon size --- app/qml/ui/Dialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/qml/ui/Dialog.qml b/app/qml/ui/Dialog.qml index 348716b..fffcf7f 100644 --- a/app/qml/ui/Dialog.qml +++ b/app/qml/ui/Dialog.qml @@ -32,8 +32,8 @@ ColumnLayout { Image { id: icon source: "" - width: 32 - height: width + Layout.implicitWidth: 32 + Layout.implicitHeight: 32 visible: source.toString() ? true : false } ColumnLayout { -- GitLab