Validate URI in Manage Search Engines dialogue
This commit is contained in:
parent
2df03cfa28
commit
7d0c949a0c
1 changed files with 6 additions and 1 deletions
|
@ -967,7 +967,12 @@ midori_search_action_get_editor (MidoriSearchAction* search_action,
|
||||||
label = gtk_label_new_with_mnemonic (_("_Address:"));
|
label = gtk_label_new_with_mnemonic (_("_Address:"));
|
||||||
gtk_size_group_add_widget (sizegroup, label);
|
gtk_size_group_add_widget (sizegroup, label);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
||||||
entry_uri = gtk_entry_new ();
|
entry_uri = katze_uri_entry_new (
|
||||||
|
#if GTK_CHECK_VERSION (2, 20, 0)
|
||||||
|
gtk_dialog_get_widget_for_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT));
|
||||||
|
#else
|
||||||
|
NULL);
|
||||||
|
#endif
|
||||||
gtk_entry_set_activates_default (GTK_ENTRY (entry_uri), TRUE);
|
gtk_entry_set_activates_default (GTK_ENTRY (entry_uri), TRUE);
|
||||||
if (!new_engine)
|
if (!new_engine)
|
||||||
gtk_entry_set_text (GTK_ENTRY (entry_uri)
|
gtk_entry_set_text (GTK_ENTRY (entry_uri)
|
||||||
|
|
Loading…
Reference in a new issue