aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-10 02:32:21 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-10 02:32:21 +0800
commit4319ee72dc5e14e2367362c4dd2034d2872e545c (patch)
tree1ee70a8977fcbcb873956f47e3006d25d2cb2cf7
parent95143a12e06797824a809c8e7f7d2b2a67b3cecf (diff)
downloadgsoc2013-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
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/contact-editor/e-contact-editor.c1
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index fb75e739f3..c2bfe40bd1 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,10 @@
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.
+
+2000-05-09 Christopher James Lahey <clahey@helixcode.com>
+
* contact-editor/e-contact-editor.c: Use new art.
2000-05-09 Christopher James Lahey <clahey@helixcode.com>
diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c
index 02340ef0d3..58f6af1475 100644
--- a/addressbook/contact-editor/e-contact-editor.c
+++ b/addressbook/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(),
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(),