From fc0f564c15835657f8052f920772f94d68ba4454 Mon Sep 17 00:00:00 2001 From: Lemmy Date: Thu, 22 Jan 2026 23:44:01 -0500 Subject: [PATCH] nwidgets: dont force 'enabled' so propagation works naturally --- Widgets/NIconButton.qml | 1 - Widgets/NIconButtonHot.qml | 1 - Widgets/NSpinBox.qml | 1 - Widgets/NTextInput.qml | 1 - 4 files changed, 4 deletions(-) diff --git a/Widgets/NIconButton.qml b/Widgets/NIconButton.qml index 3cf2ce6ed..32d6459d2 100644 --- a/Widgets/NIconButton.qml +++ b/Widgets/NIconButton.qml @@ -13,7 +13,6 @@ Rectangle { property string icon property string tooltipText property string tooltipDirection: "auto" - property bool enabled: true property bool allowClickWhenDisabled: false property bool hovering: false diff --git a/Widgets/NIconButtonHot.qml b/Widgets/NIconButtonHot.qml index 0e07d7738..13f35b52b 100644 --- a/Widgets/NIconButtonHot.qml +++ b/Widgets/NIconButtonHot.qml @@ -14,7 +14,6 @@ Rectangle { property string icon: "" property string tooltipText: "" property string tooltipDirection: "auto" - property bool enabled: true property bool allowClickWhenDisabled: false property bool hot: false diff --git a/Widgets/NSpinBox.qml b/Widgets/NSpinBox.qml index cf2e1a7ea..7de60baa3 100644 --- a/Widgets/NSpinBox.qml +++ b/Widgets/NSpinBox.qml @@ -16,7 +16,6 @@ RowLayout { property string prefix: "" property string label: "" property string description: "" - property bool enabled: true property bool hovering: false property int baseSize: Style.baseWidgetSize property var defaultValue: undefined diff --git a/Widgets/NTextInput.qml b/Widgets/NTextInput.qml index c9affc48f..0addbe7a0 100644 --- a/Widgets/NTextInput.qml +++ b/Widgets/NTextInput.qml @@ -11,7 +11,6 @@ ColumnLayout { property string description: "" property string inputIconName: "" property bool readOnly: false - property bool enabled: true property color labelColor: Color.mOnSurface property color descriptionColor: Color.mOnSurfaceVariant property string fontFamily: Settings.data.ui.fontDefault