Merge pull request #399 from naydef/naydef-patch-1

Fix checkbox widget not refreshing when changing 'checked' on Linux
This commit is contained in:
Adam D. Ruppe 2023-10-30 08:27:26 -04:00 committed by GitHub
commit 5da32aeb43
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_;