window: Fix the default value of mnemonics-visible

They aren't visible, so why should the property
be TRUE?
This commit is contained in:
Matthias Clasen 2019-06-23 14:55:10 +00:00
parent 0611370a5f
commit 996f011ed8

View File

@ -903,7 +903,7 @@ gtk_window_class_init (GtkWindowClass *klass)
g_param_spec_boolean ("mnemonics-visible",
P_("Mnemonics Visible"),
P_("Whether mnemonics are currently visible in this window"),
TRUE,
FALSE,
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
/**