app chooser: sync sensitivity of search button

The code setting up the button has been move a little later
in the dialog construction, with the effect that the entry
is already insensitive when we set up the binding.
This commit is contained in:
Matthias Clasen 2014-02-14 09:39:49 -05:00
parent f217af54ca
commit f55d210c12

View File

@ -493,9 +493,9 @@ setup_search (GtkAppChooserDialog *self)
g_object_bind_property (button, "active",
self->priv->search_bar, "search-mode-enabled",
G_BINDING_BIDIRECTIONAL);
g_object_bind_property (button, "sensitive",
self->priv->search_entry, "sensitive",
G_BINDING_BIDIRECTIONAL);
g_object_bind_property (self->priv->search_entry, "sensitive",
button, "sensitive",
G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
}
}