diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-10 02:32:21 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-10 02:32:21 +0800 |
commit | 4319ee72dc5e14e2367362c4dd2034d2872e545c (patch) | |
tree | 1ee70a8977fcbcb873956f47e3006d25d2cb2cf7 /addressbook/gui/contact-editor | |
parent | 95143a12e06797824a809c8e7f7d2b2a67b3cecf (diff) | |
download | gsoc2013-evolution-4319ee72dc5e14e2367362c4dd2034d2872e545c.tar gsoc2013-evolution-4319ee72dc5e14e2367362c4dd2034d2872e545c.tar.gz gsoc2013-evolution-4319ee72dc5e14e2367362c4dd2034d2872e545c.tar.bz2 gsoc2013-evolution-4319ee72dc5e14e2367362c4dd2034d2872e545c.tar.lz gsoc2013-evolution-4319ee72dc5e14e2367362c4dd2034d2872e545c.tar.xz gsoc2013-evolution-4319ee72dc5e14e2367362c4dd2034d2872e545c.tar.zst gsoc2013-evolution-4319ee72dc5e14e2367362c4dd2034d2872e545c.zip |
Make sure that the canvas doesn't intercept keyboard focus.
2000-05-09 Christopher James Lahey <clahey@helixcode.com>
* contact-editor/e-contact-editor.c: Make sure that the canvas
doesn't intercept keyboard focus.
svn path=/trunk/; revision=2959
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 02340ef0d3..58f6af1475 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -113,6 +113,7 @@ _add_image(GtkTable *table, gchar *image, int left, int right, int top, int bott width = gdk_pixbuf_get_width(pixbuf); height = gdk_pixbuf_get_height(pixbuf); canvas = gnome_canvas_new_aa(); + GTK_OBJECT_UNSET_FLAGS(GTK_WIDGET(canvas), GTK_CAN_FOCUS); #if 0 gnome_canvas_item_new(gnome_canvas_root(GNOME_CANVAS(canvas)), gnome_canvas_rect_get_type(), |