diff options
author | waker <wakeroid@gmail.com> | 2010-10-30 13:49:07 +0200 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2010-10-30 13:49:07 +0200 |
commit | 1e54c3f4a1bf93773cc6a7f5308dba1756e769fd (patch) | |
tree | 451c0eab72c8374ec2aa4888193b1f8e16cfcb01 /plugins | |
parent | fbcdc193b480338a90c6b5308d168955bc881e11 (diff) |
tab panel in GUI color settings is now scrollable
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gtkui/deadbeef.glade | 2 | ||||
-rw-r--r-- | plugins/gtkui/interface.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/gtkui/deadbeef.glade b/plugins/gtkui/deadbeef.glade index 79b23da7..4f38af30 100644 --- a/plugins/gtkui/deadbeef.glade +++ b/plugins/gtkui/deadbeef.glade @@ -3001,7 +3001,7 @@ Album</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 ede078f9..1b255c52 100644 --- a/plugins/gtkui/interface.c +++ b/plugins/gtkui/interface.c @@ -1882,6 +1882,7 @@ create_prefwin (void) gtk_widget_show (notebook4); gtk_container_add (GTK_CONTAINER (notebook), notebook4); gtk_container_set_border_width (GTK_CONTAINER (notebook4), 12); + gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook4), TRUE); vbox21 = gtk_vbox_new (FALSE, 8); gtk_widget_show (vbox21); |