Skip to content

Commit

Permalink
Further tiny tweaks to QfTextField
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jan 4, 2025
1 parent ac55330 commit e9e5bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qml/imports/Theme/QfTextField.qml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TextField {
y: textField.height - height - textField.bottomPadding / 2
width: textField.width
height: textField.activeFocus ? 2 : 1
color: textField.activeFocus ? Theme.mainColor : textField.enabled ? Theme.secondaryTextColor : "transparent"
color: textField.activeFocus ? Theme.mainColor : textField.hovered ? textField.color : Theme.secondaryTextColor
}
}

Expand Down

0 comments on commit e9e5bb1

Please sign in to comment.