summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@src.gnome.org>1999-09-03 21:01:15 +0000
committerOwen Taylor <otaylor@src.gnome.org>1999-09-03 21:01:15 +0000
commitdf57d883b3075a8990a0fa00fb2d6ccf91af2959 (patch)
tree001ab76ff6d17148ad7c9f0276199bcbd442c671
parentc9dec55549719987a412876e9233272b9253ac7c (diff)
downloadgdk-pixbuf-df57d883b3075a8990a0fa00fb2d6ccf91af2959.tar.gz
Overview of Changes in GTK+ 1.2.5:
* new configure.in option --disable-rebuilds to completely disable rebuilds of autogenerated sources. * check for 5.002 now, to avoid failing autogeneration build rules due to old perl versions. * fonts (and fontsets) are cached now. * more autogeneration make rules and dependancy fixups, we should be save with autogeneration up to make -j12 now ;) * new window position GTK_WIN_POS_CENTER_ALWAYS, which will recenter the GtkWindow on every size change. * major rework of window manager hints handling code, fixed a bunch of races with the new resizing code. * the new wm hints and resizing code is absolutely perfect and bug free now, it only lacks testing ;) * fixed up various rc style memory prolems. * gtk_widget_modify_style() now properly changes the style of realized widgets and references the style passed into it. if people worked around this bug, this will introduce a slight memory leak in their code. The code should typically look like: GtkRcStyle *rc_style = gtk_rc_style_new (); [...] gtk_widget_modify_style (widget, rc_style); gtk_rc_style_unref (rc_style); * fix problems with positioning menus offscreen. * GtkText fixes for some crashes and drawing errors. * Better handling for unexpected window destroys in GDK and GTK+. This should make it possible to use a GtkPlug and catch the case where its parent socket is randomly killed. * FAQ updates. * FileSelection i18n patches, RadioButton fixups. * miscellaneous other bugs fixed.
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 10f0de7e2..f1170dfca 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,11 @@ Overview of Changes in GTK+ 1.2.5:
[...]
gtk_widget_modify_style (widget, rc_style);
gtk_rc_style_unref (rc_style);
+* fix problems with positioning menus offscreen.
+* GtkText fixes for some crashes and drawing errors.
+* Better handling for unexpected window destroys in GDK and GTK+.
+ This should make it possible to use a GtkPlug and catch the
+ case where its parent socket is randomly killed.
* FAQ updates.
* FileSelection i18n patches, RadioButton fixups.
* miscellaneous other bugs fixed.