diff options
author | Federico Mena Quintero <federico@novell.com> | 2010-02-16 15:09:06 -0600 |
---|---|---|
committer | Federico Mena Quintero <federico@novell.com> | 2010-02-16 17:22:07 -0600 |
commit | 188d5bfefb58fe4b084e77848d5fce868c9064c9 (patch) | |
tree | 93d324826859dedf61c5dd2c5fcd24c14bbc1517 | |
parent | b06684e157e1a8da97476c2c1b8c308d503edd4a (diff) | |
download | gnome-control-center-display-capplet-ui-cleanup.tar.gz |
Use a cross-with-arrows instead of a hand for the cursordisplay-capplet-ui-cleanup
Cross-with-arrows means 'you can move me', while hand means 'you can click me'
in this day and age. Pointed out by Ka-Hing Cheung <kahing@gmail.com>
Signed-off-by: Federico Mena Quintero <federico@novell.com>
-rw-r--r-- | capplets/display/xrandr-capplet.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/capplets/display/xrandr-capplet.c b/capplets/display/xrandr-capplet.c index 2756e52e0..e478d8222 100644 --- a/capplets/display/xrandr-capplet.c +++ b/capplets/display/xrandr-capplet.c @@ -1496,12 +1496,12 @@ on_output_event (FooScrollArea *area, GnomeOutputInfo *output = data; App *app = g_object_get_data (G_OBJECT (area), "app"); - /* If the mouse is inside the outputs, set the cursor to a hand. See + /* If the mouse is inside the outputs, set the cursor to "you can move me". See * on_canvas_event() for where we reset the cursor to the default if it * exits the outputs' area. */ if (!app->current_configuration->clone && get_n_connected (app) > 1) - set_cursor (GTK_WIDGET (area), GDK_HAND1); + set_cursor (GTK_WIDGET (area), GDK_FLEUR); if (event->type == FOO_BUTTON_PRESS) { @@ -1607,8 +1607,8 @@ on_canvas_event (FooScrollArea *area, gpointer data) { /* If the mouse exits the outputs, reset the cursor to the default. See - * on_output_event() for where we set the cursor to a hand if it is over one - * of the outputs. + * on_output_event() for where we set the cursor to the movement cursor if + * it is over one of the outputs. */ set_cursor (GTK_WIDGET (area), GDK_BLANK_CURSOR); } |