From b3c6e580b24fcfb355f41d4581feec297d46614a Mon Sep 17 00:00:00 2001 From: Pierre-Luc Beaudoin Date: Sun, 7 Sep 2008 16:23:33 -0400 Subject: [PATCH] Use default hand cursors --- champlain/champlainview.c | 10 +---- champlain/hand_closed.svg | 81 --------------------------------------- champlain/hand_open.svg | 74 ----------------------------------- 3 files changed, 2 insertions(+), 163 deletions(-) delete mode 100644 champlain/hand_closed.svg delete mode 100644 champlain/hand_open.svg diff --git a/champlain/champlainview.c b/champlain/champlainview.c index 84dcee2..ae50804 100644 --- a/champlain/champlainview.c +++ b/champlain/champlainview.c @@ -628,14 +628,8 @@ champlain_view_new (ChamplainViewMode mode) G_CALLBACK (mouse_button_cb), view); // Setup cursors - priv->cursor_hand_open = gdk_cursor_new_from_pixbuf(gdk_display_get_default(), - gdk_pixbuf_new_from_file(DATADIR "/champlain/hand_open.svg", NULL), - 20, - 20); - priv->cursor_hand_closed = gdk_cursor_new_from_pixbuf(gdk_display_get_default(), - gdk_pixbuf_new_from_file(DATADIR "/champlain/hand_closed.svg", NULL), - 20, - 20); + priv->cursor_hand_open = gdk_cursor_new(GDK_HAND1); + priv->cursor_hand_closed = gdk_cursor_new(GDK_FLEUR); // Setup stage stage = gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (priv->clutter_embed)); diff --git a/champlain/hand_closed.svg b/champlain/hand_closed.svg deleted file mode 100644 index 1dc4ec2..0000000 --- a/champlain/hand_closed.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/champlain/hand_open.svg b/champlain/hand_open.svg deleted file mode 100644 index f597fb4..0000000 --- a/champlain/hand_open.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - -- 2.39.5