summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2010-10-16 22:10:14 +0200
committerGravatar waker <wakeroid@gmail.com>2010-10-16 22:10:14 +0200
commitb47470c518aa1b388d9347f3d76c45f480faa936 (patch)
treef86f3d305c037c94281d0fffea301265f38d96bc /plugins
parentd9c80508246b7dc277ab8a9c8292470efaad8fe8 (diff)
added scrolling to tabs in prefwindow
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gtkui/deadbeef.glade2
-rw-r--r--plugins/gtkui/interface.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/gtkui/deadbeef.glade b/plugins/gtkui/deadbeef.glade
index 34e4ace4..08f73098 100644
--- a/plugins/gtkui/deadbeef.glade
+++ b/plugins/gtkui/deadbeef.glade
@@ -2396,7 +2396,7 @@ Example: %a - %t [%l]</property>
<property name="show_tabs">True</property>
<property name="show_border">True</property>
<property name="tab_pos">GTK_POS_TOP</property>
- <property name="scrollable">False</property>
+ <property name="scrollable">True</property>
<property name="enable_popup">False</property>
<child>
diff --git a/plugins/gtkui/interface.c b/plugins/gtkui/interface.c
index 7c90804c..6ee99477 100644
--- a/plugins/gtkui/interface.c
+++ b/plugins/gtkui/interface.c
@@ -1740,6 +1740,7 @@ create_prefwin (void)
notebook = gtk_notebook_new ();
gtk_widget_show (notebook);
gtk_box_pack_start (GTK_BOX (dialog_vbox2), notebook, TRUE, TRUE, 0);
+ gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook), TRUE);
vbox10 = gtk_vbox_new (FALSE, 8);
gtk_widget_show (vbox10);