Don't prevent notebook tab focus because this disables the notebook arrows

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@513 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2006-07-01 10:22:54 +00:00
parent dc996405a1
commit be9461a4d2
2 changed files with 8 additions and 1 deletions

View File

@ -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:

View File

@ -60,7 +60,8 @@ void notebook_init()
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",