From 1dfafa61467db691d1e40cd97c13ee0777c10f0e Mon Sep 17 00:00:00 2001
From: Akira Ohgaki <akiraohgaki@gmail.com>
Date: Wed, 1 Mar 2017 14:13:14 +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 363bc48..8ccee74 100644
--- a/app/qml/ui/Dialog.qml
+++ b/app/qml/ui/Dialog.qml
@@ -33,8 +33,8 @@ ColumnLayout {
         Image {
             id: icon
             source: ""
-            Layout.implicitWidth: 32
-            Layout.implicitHeight: 32
+            Layout.preferredWidth: 32
+            Layout.preferredHeight: 32
             visible: source.toString() ? true : false
         }
         ColumnLayout {
-- 
GitLab