Ignore:
Timestamp:
Jan 17, 2026, 4:57:01 PM (11 hours ago)
Author:
chronos
Message:
  • Fixed: Some buttons were not paint correctly with Qt5 widgetset.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/CevoComponents/ButtonBase.pas

    r554 r734  
    111111        { PlayDownSound; }
    112112        FDown := True;
    113         Paint;
     113        Invalidate;
    114114        if @DownChangedProc <> nil then
    115115          DownChangedProc(Self);
     
    120120      { PlayUpSound; }
    121121      FDown := False;
    122       Paint;
     122      Invalidate;
    123123      if @DownChangedProc <> nil then
    124124        DownChangedProc(Self);
Note: See TracChangeset for help on using the changeset viewer.