Revision: 513 Author: ntrel Date: 2006-07-01 03:22:54 -0700 (Sat, 01 Jul 2006) ViewCVS: http://svn.sourceforge.net/geany/?rev=513&view=rev
Log Message: ----------- Don't prevent notebook tab focus because this disables the notebook arrows
Modified Paths: -------------- trunk/ChangeLog trunk/src/notebook.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2006-07-01 00:25:34 UTC (rev 512) +++ trunk/ChangeLog 2006-07-01 10:22:54 UTC (rev 513) @@ -1,3 +1,9 @@ +2006-07-01 Nick Treleaven nick.treleaven@btinternet.com + + * src/notebook.c: Don't prevent notebook tab focus because this + disables the notebook arrows. + + 2006-06-30 Enrico Tröger enrico.troeger@uvena.de
* src/vte.c, src/callbacks.c:
Modified: trunk/src/notebook.c =================================================================== --- trunk/src/notebook.c 2006-07-01 00:25:34 UTC (rev 512) +++ trunk/src/notebook.c 2006-07-01 10:22:54 UTC (rev 513) @@ -60,7 +60,8 @@ GtkWidget *notebook = app->notebook;
// don't allow focusing tab labels, focus sci instead - g_object_set(G_OBJECT(notebook), "can-focus", FALSE, NULL); + // This disables the notebook arrows! + //g_object_set(G_OBJECT(notebook), "can-focus", FALSE, NULL);
// Set up drag movement callback g_signal_connect(G_OBJECT(notebook), "drag-motion",
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.