SF.net SVN: geany: [2440] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Apr 2 18:12:28 UTC 2008


Revision: 2440
          http://geany.svn.sourceforge.net/geany/?rev=2440&view=rev
Author:   eht16
Date:     2008-04-02 11:12:28 -0700 (Wed, 02 Apr 2008)

Log Message:
-----------
Make the notebook tabs in the messages window scrollable.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/geany.glade
    trunk/src/interface.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-04-02 13:58:25 UTC (rev 2439)
+++ trunk/ChangeLog	2008-04-02 18:12:28 UTC (rev 2440)
@@ -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>

Modified: trunk/geany.glade
===================================================================
--- trunk/geany.glade	2008-04-02 13:58:25 UTC (rev 2439)
+++ trunk/geany.glade	2008-04-02 18:12:28 UTC (rev 2440)
@@ -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>

Modified: trunk/src/interface.c
===================================================================
--- trunk/src/interface.c	2008-04-02 13:58:25 UTC (rev 2439)
+++ trunk/src/interface.c	2008-04-02 18:12:28 UTC (rev 2440)
@@ -1260,6 +1260,7 @@
   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);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list