From effc268cac8bc5b8e00b49dee8c567ed37df702f Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 19 Mar 2020 03:14:41 -0400 Subject: [PATCH] Remove text field border animation --- src/gui/Base/HTextField.qml | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gui/Base/HTextField.qml b/src/gui/Base/HTextField.qml index 3edd5f51..70ffbfc8 100644 --- a/src/gui/Base/HTextField.qml +++ b/src/gui/Base/HTextField.qml @@ -29,9 +29,6 @@ TextField { field.activeFocus ? focusedBorderColor : borderColor border.width: bordered ? theme.controls.textField.borderWidth : 0 radius: bordered ? theme.radius : 0 - - Behavior on color { HColorAnimation { factor: 0.25 } } - Behavior on border.color { HColorAnimation { factor: 0.25 } } } // Set it only on component creation to avoid binding loops