Fix checkbox widget not refreshing when changing 'checked' on Linux

This commit is contained in:
naydef 2023-10-30 10:55:24 +02:00 committed by GitHub
parent 75ced0b8a7
commit c84e2cfbd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11132,7 +11132,7 @@ else version(custom_widgets)
/// ditto
class MouseActivatedWidget : Widget {
@property bool isChecked() { return isChecked_; }
@property bool isChecked(bool b) { return isChecked_ = b; }
@property bool isChecked(bool b) { isChecked_ = b; this.redraw(); return isChecked_;}
private bool isChecked_;