checkbutton: Initialize accessible state

The checked state of checkbuttons should be FALSE
initially, not UNDEFINED.
This commit is contained in:
Matthias Clasen 2020-07-27 18:07:26 -04:00
parent 36689d1884
commit 4a9b4ad720

View File

@ -293,6 +293,7 @@ gtk_check_button_init (GtkCheckButton *check_button)
priv->draw_indicator = TRUE;
draw_indicator_changed (check_button);
gtk_check_button_update_node_state (GTK_WIDGET (check_button));
update_accessible_state (check_button);
}
/**