diff options
author | raveit65 <[email protected]> | 2016-05-31 23:43:52 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-15 13:29:05 +0200 |
commit | a6267ed3da8b579247d3a786c91c3da3ed729c6b (patch) | |
tree | b2b6811bf44451f3049c0d50760cd66efc3a19a2 /src/caja-pathbar.c | |
parent | 0041a533fe63c8ccbe0881ab3fb9b3e9003d3ba6 (diff) | |
download | caja-a6267ed3da8b579247d3a786c91c3da3ed729c6b.tar.bz2 caja-a6267ed3da8b579247d3a786c91c3da3ed729c6b.tar.xz |
GTK+-3.20: do not use deprecated gtk_button_set_focus_on_click
Diffstat (limited to 'src/caja-pathbar.c')
-rw-r--r-- | src/caja-pathbar.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/caja-pathbar.c b/src/caja-pathbar.c index 6891d813..1d2fac48 100644 --- a/src/caja-pathbar.c +++ b/src/caja-pathbar.c @@ -167,7 +167,11 @@ get_slider_button (CajaPathBar *path_bar, #endif button = gtk_button_new (); +#if GTK_CHECK_VERSION(3,20,0) + gtk_widget_set_focus_on_click (button, FALSE); +#else gtk_button_set_focus_on_click (GTK_BUTTON (button), FALSE); +#endif gtk_container_add (GTK_CONTAINER (button), gtk_arrow_new (arrow_type, GTK_SHADOW_OUT)); gtk_container_add (GTK_CONTAINER (path_bar), button); gtk_widget_show_all (button); @@ -2017,7 +2021,11 @@ make_directory_button (CajaPathBar *path_bar, setup_button_type (button_data, path_bar, path); button_data->button = gtk_toggle_button_new (); +#if GTK_CHECK_VERSION(3,20,0) + gtk_widget_set_focus_on_click (button_data->button, FALSE); +#else gtk_button_set_focus_on_click (GTK_BUTTON (button_data->button), FALSE); +#endif /* TODO update button type when xdg directories change */ button_data->drag_info.target_location = g_object_ref (path); |