summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-properties-window.c
diff options
context:
space:
mode:
authorLaurent Napias <[email protected]>2019-06-30 18:36:43 +0200
committerZenWalker <[email protected]>2019-07-02 05:14:42 +0200
commit0b4c7a6b8c25afb987d08bfd2c4c9be57de23960 (patch)
tree0e9406d23cfd19d40231a2c38e1ced1bd5463ec2 /src/file-manager/fm-properties-window.c
parent90fda6cb5d5e471c353f75f952d3fb76c762c791 (diff)
downloadcaja-0b4c7a6b8c25afb987d08bfd2c4c9be57de23960.tar.bz2
caja-0b4c7a6b8c25afb987d08bfd2c4c9be57de23960.tar.xz
Add scroll tabs with mouse wheel
File's properties and caja's preferences windows
Diffstat (limited to 'src/file-manager/fm-properties-window.c')
-rw-r--r--src/file-manager/fm-properties-window.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index 610d9ab5..19954678 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -5160,6 +5160,14 @@ create_properties_window (StartupData *startup_data)
/* Create the notebook tabs. */
window->details->notebook = GTK_NOTEBOOK (gtk_notebook_new ());
+
+ gtk_notebook_set_scrollable (GTK_NOTEBOOK (window->details->notebook), TRUE);
+ gtk_widget_add_events (GTK_WIDGET (window->details->notebook), GDK_SCROLL_MASK);
+ g_signal_connect (window->details->notebook,
+ "scroll-event",
+ G_CALLBACK (eel_dialog_page_scroll_event_callback),
+ window);
+
gtk_widget_show (GTK_WIDGET (window->details->notebook));
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (window))),
GTK_WIDGET (window->details->notebook),