summaryrefslogtreecommitdiff
path: root/ChangeLog.pre-2-6
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.3.6GTK_1_3_6Havoc Pennington2001-06-131-0/+4
| | | | | | 2001-06-11 Havoc Pennington <hp@redhat.com> * Release 1.3.6
* Unify shaped window code and make it repaint the area that used to be partAlexander Larsson2001-06-131-0/+6
| | | | | | | | 2001-06-13 Alexander Larsson <alla@lysator.liu.se> * gdk/linux-fb/gdkwindow-fb.c: Unify shaped window code and make it repaint the area that used to be part of the shape, but isn't anymore.
* UpdatesHavoc Pennington2001-06-131-0/+8
| | | | | | | | | | 2001-06-11 Havoc Pennington <hp@redhat.com> * NEWS: Updates * configure.in (GTK_MINOR_VERSION): bump version to 1.3.6 * gtk/Makefile.am: glib_genmarshal already contains top_builddir
* Don't pass on GDK_ACTION_DEFAULT. The Xdnd code passes zero instead, so doAlexander Larsson2001-06-131-0/+6
| | | | | | | | 2001-06-13 Alexander Larsson <alla@lysator.liu.se> * gdk/linux-fb/gdkdnd-fb.c (gdk_drag_status): Don't pass on GDK_ACTION_DEFAULT. The Xdnd code passes zero instead, so do we.
* Deep copy dash_list too. (_gdk_fb_gc_new): Set default cap_style beforeAlexander Larsson2001-06-131-0/+7
| | | | | | | | | 2001-06-13 Alexander Larsson <alla@lysator.liu.se> * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy): Deep copy dash_list too. (_gdk_fb_gc_new): Set default cap_style before setting values.
* New functions.Alexander Larsson2001-06-121-0/+5
| | | | | | | 2001-06-12 Alexander Larsson <alla@lysator.liu.se> * gdk/linux-fb/gdkkeyboard-fb.c (gdk_keymap_get_default, gdk_keymap_get_direction): New functions.
* further justify gtk_tree_model_get_flags by adding a second flag for atk.Jonathan Blandford2001-06-121-0/+8
| | | | | | | | | | Tue Jun 12 12:41:27 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreemodel.h (GTK_TREE_MODEL_LIST_ONLY): further justify gtk_tree_model_get_flags by adding a second flag for atk. * gtk/gtktreemodel.c: make cursor behavior interact better with mouse presses.
* changed expand_row/collapse_row to be 2 signals each -- test_expand_rowJonathan Blandford2001-06-111-0/+6
| | | | | | | | Mon Jun 11 12:43:08 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_class_init): changed expand_row/collapse_row to be 2 signals each -- test_expand_row and row_expanded as well as test_collapse_row and row_collapsed.
* Update signal name to be changed instead of selection_changed.Anders Carlsson2001-06-101-0/+5
| | | | | | | 2001-06-10 Anders Carlsson <andersca@codefactory.se> * demos/gtk-demo/stock_browser.c (do_stock_browser): Update signal name to be changed instead of selection_changed.
* add read-only "scroll_offset" property for notification when the layoutHavoc Pennington2001-06-091-0/+15
| | | | | | | | | | | | | | | | | 2001-06-08 Havoc Pennington <hp@redhat.com> * gtk/gtkentry.c (gtk_entry_class_init): add read-only "scroll_offset" property for notification when the layout offsets may have changed (gtk_entry_adjust_scroll): add notify for scroll_offset (gtk_entry_layout_index_to_text_index): function to compensate for preedit string when doing coordinate stuff on the entry's layout (gtk_entry_text_index_to_layout_index): inverse function (gtk_entry_get_layout_offsets): hook to get current position of the layout (gtk_entry_get_layout): hook to get the layout itself. * gtk/gtklabel.c (gtk_label_get_layout): new function
* New keybinding. (gtk_tree_view_focus): Fix merge conflict.Jonathan Blandford2001-06-081-0/+6
| | | | | | | | Fri Jun 8 19:49:29 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): New keybinding. (gtk_tree_view_focus): Fix merge conflict.
* new function to clean up cursor handling.Jonathan Blandford2001-06-081-0/+5
| | | | | | | | | | Fri Jun 8 18:41:30 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_set_cursor): new function to clean up cursor handling. Pretty much nailed single selection motion, and multi-selection focus minus the fact that the anchor isn't quite right.
* added this functionHavoc Pennington2001-06-081-1/+9
| | | | | | | | | | 2001-06-08 Havoc Pennington <hp@redhat.com> * gtk/gtktextbuffer.c (gtk_text_buffer_get_start_iter): added this function * gtk/gtktextview.c (gtk_text_view_get_default_attributes): added this function
* Added compat macros for all old GTK_TYPE_GDK_xxx types. Fixes bug #52892Alex Larsson2001-06-081-0/+11
| | | | | | | | 2001-06-08 Alex Larsson <alexl@redhat.com> * gtk/gtkcompat.h.in: Added compat macros for all old GTK_TYPE_GDK_xxx types. Fixes bug #52892
* had GtkContainerClass as parent stillHavoc Pennington2001-06-081-0/+5
| | | | | | | 2001-06-08 Havoc Pennington <hp@redhat.com> * gtk/gtkhsv.h (struct _GtkHSVClass): had GtkContainerClass as parent still
* geez, don't call g_list funcs on GSListHavoc Pennington2001-06-081-0/+20
| | | | | | | | | | | | | | | | | | | | | | 2001-06-08 Havoc Pennington <hp@redhat.com> * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): geez, don't call g_list funcs on GSList * gtk/gtkwidget.c (gtk_widget_child_focus): replaces gtk_container_focus(), since some widgets have focusable locations which are not other widgets. These widgets should not have to be containers just to manage the focus. For example, GtkHSV is currently a container for no good reason. Also, this cleans up the "if (is_container && is_sensitive && is_drawable) container_focus ()" mess in widget implementations. * gtk/gtkcontainer.c (gtk_container_focus): deprecate this function, and have it just call gtk_widget_child_focus(). * gtk/gtkhsv.c: derive from widget not container Throughout: fix to reflect GtkContainer::focus change
* warn if row/cols are out of range. Fix bug #55921Jonathan Blandford2001-06-081-0/+8
| | | | | | | | | | | | | | | | | | Fri Jun 8 12:38:49 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of range. Fix bug #55921 * gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug (#55920). Fri Jun 8 12:38:49 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of range. Fix bug #55921 * gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug (#55920).
* Add a direction-changed signal, and gdk_keymap_get_current_direction().Owen Taylor2001-06-081-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fri Jun 8 12:03:07 2001 Owen Taylor <otaylor@redhat.com> * gdk/gdkkeys.[ch]: Add a direction-changed signal, and gdk_keymap_get_current_direction(). * gdk/x11/gdkevents-x11.c gdk/x11/gdkkeys-x11.c gdk/x11/gdkmain-x11.c gdk/x11/gdkprivate-x11.h: Track the current locked group, use it to set the keymap direction. * gtk/gtksettings.c: Add a new gtk-split-cursor setting to determine whether we draw a split cursor or use a jumping cursor based on the current direction. * gtk/gtkentry.c gtk/gtktextview.c gtk/gtktextlayout.[ch]: Obey the split cursor setting. Fri Jun 8 11:57:50 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkimmulticontext.c (activate_cb): Only activate when toggling on, not when toggling off... (#55906) Wed Jun 6 10:37:07 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwidget.c (gtk_widget_set_double_buffered): s/gdk_window_begin_paint/gdk_window_begin_paint_region/ in docs. (#55812, Vitaly Tishkov)
* Changed signal name from selection_changed to changed in signal connectionAnders Carlsson2001-06-081-0/+6
| | | | | | | | 2001-06-08 Anders Carlsson <andersca@codefactory.se> * demos/gtk-demo/main.c (create_tree): Changed signal name from selection_changed to changed in signal connection to GtkTreeSelection, also used g_signal_connectc since GtkTreeSelection is now a GObject.
* Now it's a GObject instead of a GtkObject. TheJonathan Blandford2001-06-071-0/+12
| | | | | | | | | | | | | | Thu Jun 7 18:25:42 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeselection.c: Now it's a GObject instead of a GtkObject. The GtkTreeSelection::selection_changed signal is now the GtkTreeSelection::changed signal. * gtk/gtktreeview.c: Modified to deal with new GtkTreeSelection object. * tests/gtktree*.c: Modified to deal with new GtkTreeSelection object.
* fix glib-mkenums and glib-genmarshal againHavoc Pennington2001-06-071-0/+4
| | | | | | 2001-06-07 Havoc Pennington <hp@redhat.com> * gtk/Makefile.am: fix glib-mkenums and glib-genmarshal again
* fixups for glib-mkenums and glib-genmarshal (not tested yet because withHavoc Pennington2001-06-071-0/+6
| | | | | | | | 2001-06-07 Havoc Pennington <hp@redhat.com> * gtk/Makefile.am: fixups for glib-mkenums and glib-genmarshal (not tested yet because with absolute path to srcdir I can't build atk, but it was broken anyway so this may help)
* output m4macros/MakefileHavoc Pennington2001-06-071-0/+4
| | | | | | 2001-06-07 Havoc Pennington <hp@redhat.com> * configure.in: output m4macros/Makefile
* hook up arrow buttons. Fixes #55460 reported by matthiasc@poet.de.Jonathan Blandford2001-06-071-1/+6
| | | | | | | Wed Jun 6 21:59:16 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_size_allocate): hook up arrow buttons. Fixes #55460 reported by matthiasc@poet.de.
* centralize expansion/collapsing so it only happens in one place.Jonathan Blandford2001-06-071-0/+6
| | | | | | | | Wed Jun 6 21:18:54 2001 Jonathan Blandford <jrb@webwynk.net> * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): centralize expansion/collapsing so it only happens in one place. (gtk_tree_view_real_expand_row): ditto.
* subst GLIB_GENMARSHAL, GOBJECT_QUERY, GLIB_MKENUMS variablesHavoc Pennington2001-06-071-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-06-07 Havoc Pennington <hp@redhat.com> * m4macros/glib-2.0.m4: subst GLIB_GENMARSHAL, GOBJECT_QUERY, GLIB_MKENUMS variables * gmodule-2.0.pc.in: add gmodule_supported variable * glib-2.0.pc.in: add glib_genmarshal, gobject_query, glib_mkenums variables * configure.in: put G_MODULE_SUPPORTED value into .pc files * autogen.sh: support AUTOGEN_SUBDIR_MODE * Makefile.am: add -uninstalled.pc.in to EXTRA_DIST 2001-06-07 Havoc Pennington <hp@redhat.com> * pango/Makefile.am: add libpango.la to _DEPENDENCIES for the other libs * configure.in: use AM_PATH_GLIB_2_0 * autogen.sh: support AUTOGEN_SUBDIR_MODE * Makefile.am: dist the .pc.in files 2001-06-07 Havoc Pennington <hp@redhat.com> * atk/Makefile.am: use @GLIB_GENMARSHAL@ so we can use uninstalled glib-genmarshal * configure.in: rearrange the library checks to support uninstalled linking * autogen.sh: add support for AUTOGEN_SUBDIR_MODE * atk-uninstalled.pc.in: new file, allows linking to uninstalled ATK in giant GTK tarball 2001-06-07 Havoc Pennington <hp@redhat.com> * tests/Makefile.am: add missing -I flag * gtk/Makefile.am: use @GLIB_MKENUMS@, @GLIB_GENMARSHAL@, etc. * configure.in: use pkg-config to see if GModule is supported; fix to properly turn on included loaders when GModule isn't supported; don't use AC_CHECK_LIB when libs are not installed yet * autogen.sh: add support for AUTOGEN_SUBDIR_MODE * Makefile.am (SUBDIRS): add m4macros subdir * gtk/Makefile.am: $(srcdir)/foo targets must be $(srcdir)/foo in dependencies also.
* fix silly bug reported by "Padraig O'Briain" <Padraig.Obriain@Sun.COM>.Jonathan Blandford2001-06-071-3/+8
| | | | | | | Wed Jun 6 19:31:11 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_set_model): fix silly bug reported by "Padraig O'Briain" <Padraig.Obriain@Sun.COM>.
* Handle key bindings to expand and collapse rows.Jonathan Blandford2001-06-071-0/+11
| | | | | | | | | | | | | Wed Jun 6 20:01:38 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_real_expand_collapse_cursor_row): Handle key bindings to expand and collapse rows. (gtk_tree_view_real_select_cursor_parent): New key binding. (gtk_tree_view_real_toggle_cursor_row): New key binding. * gtk/gtkmarshal.list: new marshaller. (VOID__BOOLEAN_BOOLEAN_BOOLEAN)
* add "inverted" propertyHavoc Pennington2001-06-061-0/+8
| | | | | | | | | | 2001-06-06 Havoc Pennington <hp@redhat.com> * gtk/gtkrange.c (gtk_range_class_init): add "inverted" property * gtk/gtkscale.c (gtk_scale_class_init): Change Page Up and Page Down to move visually rather than logically, since it confuses people. Add -/+ and Ctrl--/+ bindings for logical movement.
* Include gtkwidget.h (#55798, Karl Nelson)Owen Taylor2001-06-061-0/+11
| | | | | | | | | | | | | Wed Jun 6 10:34:42 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtktooltips.h: Include gtkwidget.h (#55798, Karl Nelson) * gdk/x11/gdkwindow-x11.c (utf8_is_latin1): 0xff is a valid latin-1 character. (Marc Lehmann, #35467) * gdk/x11/gdkwindow-x11.c: Fix minor typo in comment. (Marc Lehmann, #35467)
* Don't swap the order of the args to gtk_widget_destroyed.Alex Larsson2001-06-061-0/+3
| | | | | | | 2001-06-05 Alex Larsson <alexl@redhat.com> * demos/gtk-demo/appwindow.c (do_appwindow): Don't swap the order of the args to gtk_widget_destroyed.
* Don't crash when the properties window is destroyed.Alex Larsson2001-06-051-0/+9
| | | | | | | | | | | 2001-06-05 Alex Larsson <alexl@redhat.com> * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock): Use with_mnemonics to handle the case of stock items with underscores in them.
* rename from gtk_text_iter_reorderHavoc Pennington2001-06-051-0/+5
| | | | | | | 2001-06-05 Havoc Pennington <hp@redhat.com> * gtk/gtktextiter.c (gtk_text_iter_order): rename from gtk_text_iter_reorder
* new functionHavoc Pennington2001-06-051-0/+4
| | | | | | 2001-06-05 Havoc Pennington <hp@redhat.com> * gtk/gtktoolbar.c (gtk_toolbar_remove_space): new function
* clamp the value to the range that was setHavoc Pennington2001-06-051-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-06-05 Havoc Pennington <hp@redhat.com> * gtk/gtkspinbutton.c (gtk_spin_button_set_range): clamp the value to the range that was set * gtk/gtkrange.c: add value_changed signal, primarily intended for use with GtkScale (gtk_range_set_increments): new function (gtk_range_set_range): new function with weird name (gtk_range_set_value): new function (gtk_range_get_value): new function * gtk/gtkspinbutton.c (gtk_spin_button_get_value): rename from gtk_spin_button_get_value_as_float(). Compat #define added for get_value_as_float. * gtk/gtkhscale.c (gtk_hscale_new_with_range): new function * gtk/gtkvscale.c (gtk_vscale_new_with_range): new function 2001-06-05 Havoc Pennington <hp@redhat.com> * test-loaders.c (main): use putenv not setenv, reported by Armin Theissen
* Fix bug #55573Jonathan Blandford2001-06-051-0/+4
| | | | | | Tue Jun 5 14:57:18 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_size): Fix bug #55573
* Deprecate gtk_widget_set().Owen Taylor2001-06-051-0/+7
| | | | | | | | | Mon Jun 4 12:41:25 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwidget.h: Deprecate gtk_widget_set(). * tests/testgtk.c (create_tooltips): Remove usage of gtk_widget_set().
* Use new mnemonic convenience functionsHavoc Pennington2001-06-051-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-06-05 Havoc Pennington <hp@redhat.com> * gtk/gtkcolorsel.c: Use new mnemonic convenience functions Applying patch from Jeff Franks, with function docs added. * gtk/gtkcheckbutton.c (gtk_check_button_new_with_mnemonic): remove call to set_mnemonic_widget, change docs a bit. * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_with_mnemonic): new function * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_new_with_mnemonic): new function * gtk/gtkmenuitem.c (gtk_menu_item_new_with_mnemonic): new function * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic): new function (gtk_radio_button_new_with_mnemonic_from_widget): new function * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_new_with_mnemonic): new function * gtk/gtktogglebutton.c (gtk_toggle_button_new_with_mnemonic): new function * gtk/gtklabel.c (gtk_label_new_with_mnemonic): Improve docs on auto-selection of mnemonic widget.
* Fix segfault found by Vitaly Tishkov <tvv@sparc.spb.su>.Jonathan Blandford2001-06-051-0/+6
| | | | | | | | Mon Jun 4 15:05:24 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_max_width): Fix segfault found by Vitaly Tishkov <tvv@sparc.spb.su>. (gtk_tree_view_column_set_min_width): ditto.
* s/GdkPixmapClass/GdkPixmapObjectClass/. (#51890, Jeff Franks)Owen Taylor2001-06-051-0/+10
| | | | | | | | | | | | Tue Jun 5 11:04:06 2001 Owen Taylor <otaylor@redhat.com> * gdk/gdkpixmap.h (GDK_PIXMAP_GET_CLASS): s/GdkPixmapClass/GdkPixmapObjectClass/. (#51890, Jeff Franks) Mon Jun 4 12:50:11 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkctree.c (gtk_ctree_insert_gnode): Add a missing gtk_clist_thaw().
* Ignore releases for buttons 6, 7Havoc Pennington2001-06-051-0/+5
| | | | | | | 2001-06-04 Havoc Pennington <hp@pobox.com> * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore releases for buttons 6, 7
* Fix a search-and-replace screwup (s/CHECK/SEPARATOR/ gone awry). PatchHavoc Pennington2001-06-051-0/+6
| | | | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * gtk/gtkseparatormenuitem.h: Fix a search-and-replace screwup (s/CHECK/SEPARATOR/ gone awry). Patch from Jeff Franks, bug #55562
* handle case where text_view->layout == NULL by assuming its size is 0,Havoc Pennington2001-06-041-0/+7
| | | | | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * gtk/gtktextview.c (gtk_text_view_size_request): handle case where text_view->layout == NULL by assuming its size is 0, i.e. same as if we haven't done any reflow. Reported by Hidetoshi Tajima #55448
* support button 6 and 7 for scroll left/right, from Thomas BroyerHavoc Pennington2001-06-041-0/+5
| | | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * gdk/x11/gdkevents-x11.c (gdk_event_translate): support button 6 and 7 for scroll left/right, from Thomas Broyer
* Handle case where we need to parse the xsetting as if it were an RC fileHavoc Pennington2001-06-041-0/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-05-10 Havoc Pennington <hp@redhat.com> * gtk/gtksettings.c (gtk_settings_get_property): Handle case where we need to parse the xsetting as if it were an RC file string. * gtk/gtkcolorsel.c (gtk_color_selection_class_init): load initial value of palette from settings, not from static variable * gdk/x11/gdkevents-x11.c: add color palette, toolbar mode to xsettings translation table * gtk/gtktoolbar.c (gtk_toolbar_new): Remove arguments, because hardcoding the toolbar style conflicts with new customizable toolbar style philosophy (gtk_toolbar_class_init): add settings for default toolbar style; these are used unless the app specifically forces a toolbar style * gtk/gtksettings.c (settings_install_property_parser): only return at the start if we warn and parser == NULL * gtk/gtkcolorsel.c (gtk_color_selection_finalize): disconnect the palette changed handler so we don't notify dead color selections * gtk/gtkstyle.c (gtk_default_draw_shadow): handle xthickness/ythickness of 0 or 1 properly (gtk_default_draw_resize_grip): clear the background behind the resize grips, and align to bottom right if we square the area to be drawn. * gtk/gtkstatusbar.c (gtk_statusbar_init): set horizontal usize on statusbar label to 1, so it doesn't make toplevels resize oddly (gtk_statusbar_size_request): add grip size to request (gtk_statusbar_size_allocate): hack so the hbox still works with the grip size in the request * gtk/gtktoolbar.c (gtk_toolbar_show_all): override to fix bug where showing all on a toplevel makes the toolbar button text appear despite the toolbar mode * gtk/gtkmenubar.c: add internal padding style property * gtk/gtktoolbar.c: Add internal padding style property; add shadow type style property * gtk/gtkmenubar.c (gtk_menu_bar_paint): paint box with widget state; and put Container::border_width outside the frame * gtk/gtktextview.c: don't draw focus rectangle if we're in interior focus mode, we just use blinking cursor
* Make gdk-pixbuf have same version number as GTKHavoc Pennington2001-06-041-0/+4
| | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * configure.in: Make gdk-pixbuf have same version number as GTK
* Get rid of stupid g_return_if_fail on digits greater than 6. If thereHavoc Pennington2001-06-041-0/+14
| | | | | | | | | | | | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * gtk/gtkspinbutton.c: Get rid of stupid g_return_if_fail on digits greater than 6. If there actually are limits (which there likely aren't), should clamp to them not warn. (gtk_spin_button_new_with_range): don't take log of 0 (gtk_spin_button_size_request): use digits to compute size request, rather than step increment. * tests/testgtk.c (create_spins): test larger values of digits * gtk/gtkfontsel.c (gtk_font_selection_init): scroll to selected font on map not expose, so we don't get weirdness during scrolling
* Apply fix from Sam Solon, bug #54577, update value even if not drawable.Havoc Pennington2001-06-041-0/+5
| | | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * gtk/gtkclist.c (vadjustment_value_changed): Apply fix from Sam Solon, bug #54577, update value even if not drawable.
* change SCROLL_RIGHT to SCROLL_LEFT, reported by Thomas Broyer.Havoc Pennington2001-06-041-0/+5
| | | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * gtk/gtkrange.c (gtk_range_scroll_event): change SCROLL_RIGHT to SCROLL_LEFT, reported by Thomas Broyer.
* Process updates immediately, to prevent funny lag effect when scrolling,Havoc Pennington2001-06-041-0/+6
| | | | | | | | 2001-06-04 Havoc Pennington <hp@redhat.com> * gtk/gtkrange.c (gtk_range_adjustment_value_changed): Process updates immediately, to prevent funny lag effect when scrolling, at some mild potential efficiency cost.