diff --git a/modules/gui/qt/qml/dialogs/EditorDNDDelegate.qml b/modules/gui/qt/qml/dialogs/EditorDNDDelegate.qml index 7aed669f3c26b1d7098326521bcc73637dcb2379..f35707f1a4f9a2ed2dec8153983cfda470563c83 100644 --- a/modules/gui/qt/qml/dialogs/EditorDNDDelegate.qml +++ b/modules/gui/qt/qml/dialogs/EditorDNDDelegate.qml @@ -114,9 +114,7 @@ MouseArea { if (drag.source.objectName == "buttonsList") dndView.model.insert(parent.DelegateModel.itemsIndex, {"id" : drag.source.mIndex, - "size": bigButton.checked ? - PlayerControlBarModel.WIDGET_BIG : - PlayerControlBarModel.WIDGET_NORMAL}) + "size": PlayerControlBarModel.WIDGET_NORMAL}) else{ var srcIndex = drag.source.DelegateModel.itemsIndex var destIndex = parent.DelegateModel.itemsIndex diff --git a/modules/gui/qt/qml/dialogs/EditorDNDView.qml b/modules/gui/qt/qml/dialogs/EditorDNDView.qml index e9c302d18d39165a8862fcac586aed73bf7f0a9c..ce2292d0d926b4394cb602fd08fc80328427004a 100644 --- a/modules/gui/qt/qml/dialogs/EditorDNDView.qml +++ b/modules/gui/qt/qml/dialogs/EditorDNDView.qml @@ -72,9 +72,7 @@ ListView { if (drag.source.objectName == "buttonsList"){ playerBtnDND.model.insert(playerBtnDND.count, {"id" : drag.source.mIndex, - "size": bigButton.checked ? - PlayerControlBarModel.WIDGET_BIG : - PlayerControlBarModel.WIDGET_NORMAL}) + "size": PlayerControlBarModel.WIDGET_NORMAL}) } else playerBtnDND.model.move( diff --git a/modules/gui/qt/qml/dialogs/ToolbarEditor.qml b/modules/gui/qt/qml/dialogs/ToolbarEditor.qml index 1e65f9fdce302f24f01cab3bfb76463e2c41bae9..8f4552500e0efac336f3bd1cadf2da8234873291 100644 --- a/modules/gui/qt/qml/dialogs/ToolbarEditor.qml +++ b/modules/gui/qt/qml/dialogs/ToolbarEditor.qml @@ -86,27 +86,6 @@ Rectangle{ ColumnLayout{ anchors.fill: parent - CheckBox{ - id: bigButton - text: qsTr("Big Buttons") - Layout.preferredHeight: VLCStyle.heightBar_small - Layout.margins: VLCStyle.margin_xxsmall - - contentItem: Text { - text: bigButton.text - font: bigButton.font - color: VLCStyle.colors.buttonText - verticalAlignment: Text.AlignVCenter - leftPadding: bigButton.indicator.width + bigButton.spacing - } - } - - Rectangle{ - Layout.preferredHeight: 1 - Layout.fillWidth: true - color: VLCStyle.colors.buttonText - } - Text { Layout.margins: VLCStyle.margin_xxsmall text: qsTr("Drag items below to add them above: ")