2
0
mirror of synced 2025-02-24 20:38:23 +00:00

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

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
}