fix(StatusBaseButton): fix wrong id usage

This commit is contained in:
Pascal Precht 2022-09-07 14:28:09 +02:00 committed by r4bbit.eth
parent 504053a6bf
commit 4d16ac17a8
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ Rectangle {
color: {
if (statusBaseButton.enabled)
return !statusButton.loading && (sensor.containsMouse || highlighted) ? hoverColor
return !statusBaseButton.loading && (sensor.containsMouse || highlighted) ? hoverColor
: normalColor;
return disaledColor
}