diff options
Diffstat (limited to 'meta/packages/pimlico/files/contacts-focus-avoidance.patch')
| -rw-r--r-- | meta/packages/pimlico/files/contacts-focus-avoidance.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/packages/pimlico/files/contacts-focus-avoidance.patch b/meta/packages/pimlico/files/contacts-focus-avoidance.patch new file mode 100644 index 0000000000..77aae90d53 --- /dev/null +++ b/meta/packages/pimlico/files/contacts-focus-avoidance.patch | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | Index: src/contacts-gtk.c | ||
| 2 | =================================================================== | ||
| 3 | --- src/contacts-gtk.c (revision 405) | ||
| 4 | +++ src/contacts-gtk.c (working copy) | ||
| 5 | @@ -426,7 +426,6 @@ | ||
| 6 | GTK_WIDGET_SET_FLAGS (edit_done_button, GTK_CAN_DEFAULT); | ||
| 7 | |||
| 8 | |||
| 9 | - gtk_widget_grab_focus (search_entry); | ||
| 10 | gtk_widget_grab_default (edit_button); | ||
| 11 | gtk_window_add_accel_group (GTK_WINDOW (main_window), accel_group); | ||
| 12 | |||
| 13 | @@ -436,8 +435,9 @@ | ||
| 14 | gtk_size_group_add_widget (size_group, summary_hbuttonbox); | ||
| 15 | g_object_unref (size_group); | ||
| 16 | |||
| 17 | + /* Set it so no focus on the search box by default */ | ||
| 18 | + gtk_window_set_focus (GTK_WINDOW (main_window), NULL); | ||
| 19 | |||
| 20 | - | ||
| 21 | /* connect signals */ | ||
| 22 | g_signal_connect (G_OBJECT (main_window), "delete-event", | ||
| 23 | G_CALLBACK (contacts_main_window_delete_event_cb), data); | ||
| 24 | Index: src/contacts-edit-pane.c | ||
| 25 | =================================================================== | ||
| 26 | --- src/contacts-edit-pane.c (revision 405) | ||
| 27 | +++ src/contacts-edit-pane.c (working copy) | ||
| 28 | @@ -86,7 +86,7 @@ | ||
| 29 | if (data->ui->edit_button) | ||
| 30 | gtk_window_set_default (window, data->ui->edit_button); | ||
| 31 | if ((widget = data->ui->search_entry) && GTK_WIDGET_VISIBLE (widget)) | ||
| 32 | - gtk_window_set_focus (window, data->ui->search_entry); | ||
| 33 | + gtk_window_set_focus (window, NULL); | ||
| 34 | } | ||
| 35 | |||
| 36 | static void | ||
