diff options
| author | Josh Andler <scislac@gmail.com> | 2006-06-19 02:23:07 +0000 |
|---|---|---|
| committer | scislac <scislac@users.sourceforge.net> | 2006-06-19 02:23:07 +0000 |
| commit | bb05f0d4bf3818eec40efbf0ca30ae4bd21a65b4 (patch) | |
| tree | 9b288ae8f76ae6ca2ed6ae4f4bc4fce0f7df6ab5 /src/select-context.cpp | |
| parent | added vietnamese as translation package (diff) | |
| download | inkscape-bb05f0d4bf3818eec40efbf0ca30ae4bd21a65b4.tar.gz inkscape-bb05f0d4bf3818eec40efbf0ca30ae4bd21a65b4.zip | |
initial color cursor implementation (reads from pixbufs, will work on reading from svg instead)
(bzr r1227)
Diffstat (limited to '')
| -rw-r--r-- | src/select-context.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/select-context.cpp b/src/select-context.cpp index 0f57f5e8e..7027de1ef 100644 --- a/src/select-context.cpp +++ b/src/select-context.cpp @@ -22,8 +22,8 @@ #include "selection.h" #include "seltrans-handles.h" #include "sp-cursor.h" -#include "pixmaps/cursor-select-m.xpm" -#include "pixmaps/cursor-select-d.xpm" +//#include "pixmaps/cursor-select-m.xpm" // These aren't used +//#include "pixmaps/cursor-select-d.xpm" #include "pixmaps/handles.xpm" #include <glibmm/i18n.h> @@ -96,8 +96,8 @@ sp_select_context_class_init(SPSelectContextClass *klass) event_context_class->item_handler = sp_select_context_item_handler; // cursors in select context - CursorSelectMouseover = sp_cursor_new_from_xpm(cursor_select_m_xpm , 1, 1); - CursorSelectDragging = sp_cursor_new_from_xpm(cursor_select_d_xpm , 1, 1); +// CursorSelectMouseover = sp_cursor_new_from_xpm(cursor_select_m_xpm , 1, 1); +// CursorSelectDragging = sp_cursor_new_from_xpm(cursor_select_d_xpm , 1, 1); // selection handles handles[0] = gdk_pixbuf_new_from_xpm_data((gchar const **)handle_scale_nw_xpm); handles[1] = gdk_pixbuf_new_from_xpm_data((gchar const **)handle_scale_ne_xpm); |
