aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoby Wang <boby.wang@sun.com>2006-07-22 18:00:15 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-07-22 18:00:15 +0800
commit30042452b679b31bdf0f51918e55c76d644dc772 (patch)
tree7c6728cb56b7d1548e01db5126c32fcc95dff493
parent55675f968d10d5c11db24286e4f8a315e616f00f (diff)
downloadgsoc2013-evolution-30042452b679b31bdf0f51918e55c76d644dc772.tar
gsoc2013-evolution-30042452b679b31bdf0f51918e55c76d644dc772.tar.gz
gsoc2013-evolution-30042452b679b31bdf0f51918e55c76d644dc772.tar.bz2
gsoc2013-evolution-30042452b679b31bdf0f51918e55c76d644dc772.tar.lz
gsoc2013-evolution-30042452b679b31bdf0f51918e55c76d644dc772.tar.xz
gsoc2013-evolution-30042452b679b31bdf0f51918e55c76d644dc772.tar.zst
gsoc2013-evolution-30042452b679b31bdf0f51918e55c76d644dc772.zip
** Fixes bug #347381
2006-07-20 Boby Wang <boby.wang@sun.com> ** Fixes bug #347381 * gui/contact-editor/e-contact-editor.c: (image_clicked): Set the image chooser dialog to modal dialog, then we can focus back to the chooser dialog by <ALT + TAB> svn path=/trunk/; revision=32376
-rw-r--r--addressbook/ChangeLog10
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c1
2 files changed, 11 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index ec12831d52..3c16080d36 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,13 @@
+2006-07-20 Boby Wang <boby.wang@sun.com>
+
+ Reviewed by Harish Krishnaswamy <kharish@novell.com>
+
+ ** Fix bug #347381
+
+ * gui/contact-editor/e-contact-editor.c: (image_clicked):
+ Set the image chooser dialog to modal dialog, then we can focus back to
+ the chooser dialog by <ALT + TAB>
+
2006-07-19 Devashish Sharma <sdevashish@novell.com>
* addressbook/gui/widgets/e-minicard.c :
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index 0a385da616..9d736573b7 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -2848,6 +2848,7 @@ image_clicked (GtkWidget *button, EContactEditor *editor)
/* Display the dialog */
+ gtk_window_set_modal (GTK_WINDOW (editor->file_selector), TRUE);
gtk_window_present (GTK_WINDOW (editor->file_selector));
}