summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2002-05-31 13:29:53 +0000
committerMikael Hallendal <hallski@src.gnome.org>2002-05-31 13:29:53 +0000
commitc667a88f9a39d4cd61bdbac6ec525d5956ac24c7 (patch)
tree399cd0f9d7c0d72e3482be97f6cfd0b61650984f
parent69dd1437327a0647d38f0c794604b054890c9ae2 (diff)
downloadyelp-c667a88f9a39d4cd61bdbac6ec525d5956ac24c7.tar.gz
Tell the about dialog who its parent is, so that it appears at the right
2002-05-31 Ross Burton <ross@burtonini.com> * src/yelp-window.c (window_about_cb): Tell the about dialog who its parent is, so that it appears at the right location.
-rw-r--r--ChangeLog5
-rw-r--r--src/yelp-window.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d02baff7..ac4cf918 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-31 Ross Burton <ross@burtonini.com>
+
+ * src/yelp-window.c (window_about_cb): Tell the about dialog who
+ its parent is, so that it appears at the right location.
+
2002-05-31 Yogeesh MB <yogeeshappa.mathighatta@wipro.com>
* src/yelp-main.c: fixes save session bug, #82605
diff --git a/src/yelp-window.c b/src/yelp-window.c
index d11225b1..4d90c27c 100644
--- a/src/yelp-window.c
+++ b/src/yelp-window.c
@@ -574,6 +574,7 @@ window_about_cb (gpointer data, guint section, GtkWidget *widget)
strcmp (translator_credits, "translator_credits") != 0 ? translator_credits : NULL,
NULL);
+ gtk_window_set_transient_for (GTK_WINDOW (about), GTK_WINDOW (data));
gtk_widget_show (about);
}