positions have been set for the frame (as is done for frames in
special-display-buffer-names).
+2005-09-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
+
+ * gtkutil.c (xg_set_geometry): Do a gtk_window_move if program
+ positions have been set for the frame (as is done for frames in
+ special-display-buffer-names).
+
2005-09-19 Kim F. Storm <storm@cua.dk>
* editfns.c (Fformat): Don't scan past end of format string that
if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
geom_str))
fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
+ } else if (f->size_hint_flags & PPosition) {
+ gtk_window_move (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
+ f->left_pos, f->top_pos);
}
}