diff options
author | Laurent Napias <[email protected]> | 2019-06-26 22:51:52 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-02 11:07:04 +0200 |
commit | b931a8f99fc07cf860819507e18546bb9583a2f1 (patch) | |
tree | 3e0dfaa5be7b0e9f63f34bc147df4a688493f3c6 /capplets/mouse | |
parent | 566addef611bfab08379e29a16379e6a12642db7 (diff) | |
download | mate-control-center-b931a8f99fc07cf860819507e18546bb9583a2f1.tar.bz2 mate-control-center-b931a8f99fc07cf860819507e18546bb9583a2f1.tar.xz |
Add scroll tabs with mouse wheel in severals capplets
Diffstat (limited to 'capplets/mouse')
-rw-r--r-- | capplets/mouse/mate-mouse-properties.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/capplets/mouse/mate-mouse-properties.c b/capplets/mouse/mate-mouse-properties.c index 194d4609..2c2292a4 100644 --- a/capplets/mouse/mate-mouse-properties.c +++ b/capplets/mouse/mate-mouse-properties.c @@ -445,6 +445,13 @@ main (int argc, char **argv) g_signal_connect (dialog_win, "response", G_CALLBACK (dialog_response_cb), NULL); + GtkNotebook* nb = GTK_NOTEBOOK (WID ("prefs_widget")); + gtk_widget_add_events (GTK_WIDGET (nb), GDK_SCROLL_MASK); + g_signal_connect (GTK_WIDGET (nb), "scroll-event", + G_CALLBACK (capplet_dialog_page_scroll_event_cb), + GTK_WINDOW (dialog_win)); + + if (start_page != NULL) { gchar *page_name; @@ -453,10 +460,8 @@ main (int argc, char **argv) w = WID (page_name); if (w != NULL) { - GtkNotebook *nb; gint pindex; - nb = GTK_NOTEBOOK (WID ("prefs_widget")); pindex = gtk_notebook_page_num (nb, w); if (pindex != -1) gtk_notebook_set_current_page (nb, pindex); |