From 25d22c1a64ca858bbbd05ddeee4b393239c2e98c Mon Sep 17 00:00:00 2001 From: Chris Holland Date: Fri, 9 Oct 2020 11:22:00 -0400 Subject: [PATCH] Remove unnecessary anchors in the ComboBox.contentItem @ahiemstra noticed this in the qqc2-desktop-style!19 patch but the PC3 patch plasma-framework!36 had already been merged. --- src/declarativeimports/plasmacomponents3/ComboBox.qml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/declarativeimports/plasmacomponents3/ComboBox.qml b/src/declarativeimports/plasmacomponents3/ComboBox.qml index 6661d4a98..7da9ca16f 100644 --- a/src/declarativeimports/plasmacomponents3/ComboBox.qml +++ b/src/declarativeimports/plasmacomponents3/ComboBox.qml @@ -54,13 +54,6 @@ T.ComboBox { contentItem: T.TextField { id: textField padding: 0 - anchors { - fill:parent - leftMargin: control.leftPadding - rightMargin: control.rightPadding - topMargin: control.topPadding - bottomMargin: control.bottomPadding - } text: control.editable ? control.editText : control.displayText enabled: control.editable