summaryrefslogtreecommitdiff
path: root/textscreen/txt_checkbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'textscreen/txt_checkbox.c')
-rw-r--r--textscreen/txt_checkbox.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/textscreen/txt_checkbox.c b/textscreen/txt_checkbox.c
index f33781c1..a61822eb 100644
--- a/textscreen/txt_checkbox.c
+++ b/textscreen/txt_checkbox.c
@@ -71,6 +71,7 @@ static int TXT_CheckBoxKeyPress(txt_widget_t *widget, int key)
if (key == KEY_ENTER || key == ' ')
{
*checkbox->variable = !*checkbox->variable;
+ TXT_EmitSignal(widget, "changed");
return 1;
}