From d8d3f16c9f776f73a5672ddf33bb25a87718be0a Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 11 Jun 2020 17:01:04 +0200 Subject: [PATCH] Remove unneeded width property CURA-7418 --- resources/qml/Account/UserOperations.qml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/resources/qml/Account/UserOperations.qml b/resources/qml/Account/UserOperations.qml index c0f33c74cd..a39e7f1074 100644 --- a/resources/qml/Account/UserOperations.qml +++ b/resources/qml/Account/UserOperations.qml @@ -9,11 +9,6 @@ import Cura 1.1 as Cura Column { - width: Math.max( - Math.max(title.width, accountButton.width) + 2 * UM.Theme.getSize("default_margin").width, - syncRow.width - ) - spacing: UM.Theme.getSize("default_margin").height SystemPalette @@ -32,7 +27,8 @@ Column color: UM.Theme.getColor("text") } - SyncState { + SyncState + { id: syncRow } @@ -76,5 +72,4 @@ Column onExited: signOutButton.font.underline = false } } - }