diff --git a/Modules/DemoPanel/DemoPanel.qml b/Modules/DemoPanel/DemoPanel.qml index 76ab436..e66541d 100644 --- a/Modules/DemoPanel/DemoPanel.qml +++ b/Modules/DemoPanel/DemoPanel.qml @@ -33,13 +33,6 @@ NLoader { anchors.fill: parent } - // A basic rectangle, which scale ok because out of layout - Rectangle { - width: Style.baseWidgetSize * scaling - height: Style.baseWidgetSize * scaling - color: Colors.accentTertiary - } - ColumnLayout { anchors.fill: parent anchors.margins: Style.marginXL * scaling @@ -169,13 +162,6 @@ NLoader { Layout.fillWidth: true } } - - // A basic rectangle, which does not scale right?! - Rectangle { - width: Style.baseWidgetSize * scaling - height: Style.baseWidgetSize * scaling - color: Colors.accentPrimary - } } } }