summaryrefslogtreecommitdiffstats
path: root/src/widgets/toolbox.cpp
diff options
context:
space:
mode:
authorMilosz Derezynski <mderezynski@gmail.com>2006-05-22 09:06:31 +0000
committermderezynski <mderezynski@users.sourceforge.net>2006-05-22 09:06:31 +0000
commitbac3a547c0f899bb932f1639d39c4744374cb17f (patch)
tree6c594868e097f5bbeb724aef06d66692f892ce25 /src/widgets/toolbox.cpp
parent* Make sure we don't read on NULL pointer instead of gobject instance in text... (diff)
downloadinkscape-bac3a547c0f899bb932f1639d39c4744374cb17f.tar.gz
inkscape-bac3a547c0f899bb932f1639d39c4744374cb17f.zip
* Re-add pointer/keyb grabbing for font list popdown in the text toolbar (was temporarily disabled for testing, or i just accidentally commited it that way)
(bzr r939)
Diffstat (limited to 'src/widgets/toolbox.cpp')
-rw-r--r--src/widgets/toolbox.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index f8f2f611d..cbccf9294 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -3212,7 +3212,6 @@ namespace {
gtk_window_move (GTK_WINDOW (popdown), x, y + widget->allocation.height + 2); //2px of grace space
gtk_widget_show_all (popdown);
-#if 0
gdk_pointer_grab (widget->window, TRUE,
GdkEventMask (GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
@@ -3220,7 +3219,6 @@ namespace {
NULL, NULL, GDK_CURRENT_TIME);
gdk_keyboard_grab (widget->window, TRUE, GDK_CURRENT_TIME);
-#endif
visible = true;
}