Only set the cursor size if it is != 0.

2006-01-25  Matthias Clasen  <mclasen@redhat.com>

	* gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): Only
	set the cursor size if it is != 0.

	* gtk/gtksettings.c (gtk_settings_class_init): Change the default value
	of gtk-cursor-theme-size to 0, meaning "use default".
This commit is contained in:
Matthias Clasen
2006-01-25 15:41:40 +00:00
committed by Matthias Clasen
parent 58e77fe25b
commit 2ec7ee28b8
4 changed files with 23 additions and 6 deletions

View File

@ -451,8 +451,8 @@ update_cursor (gpointer key,
* gdk_x11_display_set_cursor_theme:
* @display: a #GdkDisplay
* @theme: the name of the cursor theme to use, or %NULL to unset
* a previously set value
* @size: the cursor size to use
* a previously set value
* @size: the cursor size to use, or 0 to keep the previous size
*
* Sets the cursor theme from which the images for cursor
* should be taken.
@ -494,7 +494,8 @@ gdk_x11_display_set_cursor_theme (GdkDisplay *display,
theme_serial++;
XcursorSetTheme (xdisplay, theme);
XcursorSetDefaultSize (xdisplay, size);
if (size > 0)
XcursorSetDefaultSize (xdisplay, size);
g_hash_table_foreach (display_x11->xid_ht, update_cursor, NULL);
}