From a7ce6737ec65e3a6c05a36a2b384944a3e35eeba Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Tue, 2 Sep 2025 19:55:23 -0400 Subject: [PATCH] NComboBox: slightly taller by default --- Widgets/NComboBox.qml | 2 +- Widgets/NSectionEditor.qml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Widgets/NComboBox.qml b/Widgets/NComboBox.qml index b54ae1a..813eee5 100644 --- a/Widgets/NComboBox.qml +++ b/Widgets/NComboBox.qml @@ -10,7 +10,7 @@ RowLayout { readonly property real preferredHeight: Style.baseWidgetSize * 1.1 * scaling property real preferredWidth: 320 * scaling - property real popupHeight: 160 * scaling + property real popupHeight: 180 * scaling property string label: "" property string description: "" diff --git a/Widgets/NSectionEditor.qml b/Widgets/NSectionEditor.qml index 91ce657..a0a38a9 100644 --- a/Widgets/NSectionEditor.qml +++ b/Widgets/NSectionEditor.qml @@ -76,6 +76,7 @@ NBox { description: "" placeholder: "Select a widget to add..." onSelected: key => comboBox.currentKey = key + popupHeight: 240 * scaling Layout.alignment: Qt.AlignVCenter }