diff options
| author | mc <> | 2014-12-31 06:55:37 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-12-31 06:55:37 +0000 |
| commit | 5363af388992d711d81fc695732675e1395407b7 (patch) | |
| tree | 1b0bc1e34908ff7672b07d3f18e8921cce23cc6c /src/ui/tools/dropper-tool.cpp | |
| parent | UI messages typo (diff) | |
| download | inkscape-5363af388992d711d81fc695732675e1395407b7.tar.gz inkscape-5363af388992d711d81fc695732675e1395407b7.zip | |
Fix for bug #758718 (Color Picker/Dropper: Color selection area not lined up with target in cursor) by Mc.
Fixed bugs:
- https://launchpad.net/bugs/758718
(bzr r13829)
Diffstat (limited to 'src/ui/tools/dropper-tool.cpp')
| -rw-r--r-- | src/ui/tools/dropper-tool.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/tools/dropper-tool.cpp b/src/ui/tools/dropper-tool.cpp index 178e6636e..9038628ee 100644 --- a/src/ui/tools/dropper-tool.cpp +++ b/src/ui/tools/dropper-tool.cpp @@ -73,7 +73,7 @@ const std::string& DropperTool::getPrefsPath() { const std::string DropperTool::prefsPath = "/tools/dropper"; DropperTool::DropperTool() - : ToolBase(cursor_dropper_f_xpm, 7, 7) + : ToolBase(cursor_dropper_f_xpm, 5, 5) , R(0) , G(0) , B(0) @@ -83,8 +83,8 @@ DropperTool::DropperTool() , area(NULL) , centre(0, 0) { - cursor_dropper_fill = sp_cursor_new_from_xpm(cursor_dropper_f_xpm , 7, 7); - cursor_dropper_stroke = sp_cursor_new_from_xpm(cursor_dropper_s_xpm , 7, 7); + cursor_dropper_fill = sp_cursor_new_from_xpm(cursor_dropper_f_xpm , 5, 5); + cursor_dropper_stroke = sp_cursor_new_from_xpm(cursor_dropper_s_xpm , 5, 5); } DropperTool::~DropperTool() { |
