mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-13 14:00:09 +00:00
lower the default timeout values for gtk-tooltip-timeout and
2007-08-29 Kristian Rietveld <kris@imendio.com> * gtk/gtksettings.c: lower the default timeout values for gtk-tooltip-timeout and gtk-tooltip-browse-timeout. (#451202, Richard Hult). svn path=/trunk/; revision=18701
This commit is contained in:
parent
fcb5597a13
commit
35cae8d92b
@ -1,3 +1,9 @@
|
|||||||
|
2007-08-29 Kristian Rietveld <kris@imendio.com>
|
||||||
|
|
||||||
|
* gtk/gtksettings.c: lower the default timeout values for
|
||||||
|
gtk-tooltip-timeout and gtk-tooltip-browse-timeout. (#451202,
|
||||||
|
Richard Hult).
|
||||||
|
|
||||||
Thu Aug 23 15:32:09 2007 Tim Janik <timj@imendio.com>
|
Thu Aug 23 15:32:09 2007 Tim Janik <timj@imendio.com>
|
||||||
|
|
||||||
* gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): fix
|
* gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): fix
|
||||||
|
@ -570,11 +570,11 @@ gtk_settings_class_init (GtkSettingsClass *class)
|
|||||||
*/
|
*/
|
||||||
result = settings_install_property_parser (class,
|
result = settings_install_property_parser (class,
|
||||||
g_param_spec_int ("gtk-tooltip-timeout",
|
g_param_spec_int ("gtk-tooltip-timeout",
|
||||||
P_("Tooltip timeout"),
|
P_("Tooltip timeout"),
|
||||||
P_("Timeout before tooltip is shown"),
|
P_("Timeout before tooltip is shown"),
|
||||||
0, G_MAXINT,
|
0, G_MAXINT,
|
||||||
1500,
|
500,
|
||||||
GTK_PARAM_READWRITE),
|
GTK_PARAM_READWRITE),
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
g_assert (result == PROP_TOOLTIP_TIMEOUT);
|
g_assert (result == PROP_TOOLTIP_TIMEOUT);
|
||||||
@ -596,11 +596,11 @@ gtk_settings_class_init (GtkSettingsClass *class)
|
|||||||
*/
|
*/
|
||||||
result = settings_install_property_parser (class,
|
result = settings_install_property_parser (class,
|
||||||
g_param_spec_int ("gtk-tooltip-browse-timeout",
|
g_param_spec_int ("gtk-tooltip-browse-timeout",
|
||||||
P_("Tooltip browse timeout"),
|
P_("Tooltip browse timeout"),
|
||||||
P_("Timeout before tooltip is shown when browse mode is enabled"),
|
P_("Timeout before tooltip is shown when browse mode is enabled"),
|
||||||
0, G_MAXINT,
|
0, G_MAXINT,
|
||||||
100,
|
60,
|
||||||
GTK_PARAM_READWRITE),
|
GTK_PARAM_READWRITE),
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
g_assert (result == PROP_TOOLTIP_BROWSE_TIMEOUT);
|
g_assert (result == PROP_TOOLTIP_BROWSE_TIMEOUT);
|
||||||
|
Loading…
Reference in New Issue
Block a user