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, 0 insertions, 36 deletions
diff --git a/meta/packages/pimlico/files/contacts-focus-avoidance.patch b/meta/packages/pimlico/files/contacts-focus-avoidance.patch deleted file mode 100644 index 8795b138be..0000000000 --- a/meta/packages/pimlico/files/contacts-focus-avoidance.patch +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | Index: src/contacts-gtk.c | ||
2 | =================================================================== | ||
3 | --- a/src/contacts-gtk.c (revision 405) | ||
4 | +++ b/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 | --- a/src/contacts-edit-pane.c (revision 405) | ||
27 | +++ b/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 | ||