From 5802e066d640e67701221ad933c1ed8b3998437f Mon Sep 17 00:00:00 2001 From: quadbyte Date: Mon, 11 Aug 2025 22:34:23 -0400 Subject: [PATCH] NTextBox (input) should use the same border (color, thickness) as other widgets (ex: NComboxBox) --- Widgets/NTextBox.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Widgets/NTextBox.qml b/Widgets/NTextBox.qml index 6d6c8a4..bbd70f1 100644 --- a/Widgets/NTextBox.qml +++ b/Widgets/NTextBox.qml @@ -33,8 +33,8 @@ Item { anchors.fill: parent radius: frame.radius color: "transparent" - border.color: input.activeFocus ? Colors.accentPrimary : "transparent" - border.width: input.activeFocus ? Math.max(1, Style.borderMedium * scaling) : 0 + border.color: input.activeFocus ? Colors.hover : "transparent" + border.width: input.activeFocus ? Math.max(1, Style.borderThin * scaling) : 0 } RowLayout {