Skip to content

Commit ae5442f

Browse files
committed
Fix disabled button
1 parent 6f88802 commit ae5442f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/Bango/Core/ImDraw.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ public static bool ButtonDisabled( string text )
307307
{
308308
(Color strokeStart, Color strokeEnd) = (Theme.Default800, Theme.Default800);
309309
(Color fillStart, Color fillEnd) = (Theme.Default900, Theme.Default900);
310-
(Color mouseDownFillStart, Color mouseDownFillEnd) = (Theme.Default50, Theme.Default50);
310+
(Color mouseDownFillStart, Color mouseDownFillEnd) = (Theme.Default900, Theme.Default900);
311311

312312
ButtonInternal( text, strokeStart, strokeEnd, fillStart, fillEnd, mouseDownFillStart, mouseDownFillEnd, Theme.Default600 );
313313
return false;

0 commit comments

Comments
 (0)