Make the notebook tabs in the messages window scrollable.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2440 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
34438f1290
commit
336140e260
@ -13,6 +13,8 @@
|
||||
Avoid setting line number margin twice when creating new tabs, also
|
||||
don't call gtk_notebook_set_current_page() explicitly as it isn't
|
||||
necessary.
|
||||
* geany.glade, src/interface.c:
|
||||
Make the notebook tabs in the messages window scrollable.
|
||||
|
||||
|
||||
2008-04-01 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||
|
@ -2217,7 +2217,7 @@
|
||||
<property name="show_tabs">True</property>
|
||||
<property name="show_border">True</property>
|
||||
<property name="tab_pos">GTK_POS_LEFT</property>
|
||||
<property name="scrollable">False</property>
|
||||
<property name="scrollable">True</property>
|
||||
<property name="enable_popup">False</property>
|
||||
|
||||
<child>
|
||||
|
@ -1260,6 +1260,7 @@ create_window1 (void)
|
||||
gtk_widget_show (notebook_info);
|
||||
gtk_container_add (GTK_CONTAINER (viewport1), notebook_info);
|
||||
gtk_notebook_set_tab_pos (GTK_NOTEBOOK (notebook_info), GTK_POS_LEFT);
|
||||
gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook_info), TRUE);
|
||||
|
||||
scrolledwindow4 = gtk_scrolled_window_new (NULL, NULL);
|
||||
gtk_widget_show (scrolledwindow4);
|
||||
|
Loading…
x
Reference in New Issue
Block a user