summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2007-07-28 03:03:40 +0000
committermental <mental@users.sourceforge.net>2007-07-28 03:03:40 +0000
commitc0b2cf8233a5e53464d584df0181441c8fa88773 (patch)
tree6a670ffb8812ce4adec71d278815b7dc982009c9 /src
parentnudge things over by a pixel to make them line up (diff)
downloadinkscape-c0b2cf8233a5e53464d584df0181441c8fa88773.tar.gz
inkscape-c0b2cf8233a5e53464d584df0181441c8fa88773.zip
fix off-by-one with line drawing
(bzr r3325)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/filter-effects-dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp
index 53619914b..1d7d7d002 100644
--- a/src/ui/dialog/filter-effects-dialog.cpp
+++ b/src/ui/dialog/filter-effects-dialog.cpp
@@ -761,7 +761,7 @@ bool FilterEffectsDialog::PrimitiveList::on_expose_signal(GdkEventExpose* e)
get_bin_window()->draw_line(darkgc, x, y + h, outline_x, y + h);
// Side outline
- get_bin_window()->draw_line(darkgc, outline_x, y, outline_x, y + h);
+ get_bin_window()->draw_line(darkgc, outline_x, y - 1, outline_x, y + h);
std::vector<Gdk::Point> con_poly;
int con_drag_y;