mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #399 from naydef/naydef-patch-1
Fix checkbox widget not refreshing when changing 'checked' on Linux
This commit is contained in:
commit
5da32aeb43
|
@ -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_;
|
||||
|
||||
|
|
Loading…
Reference in New Issue