summaryrefslogtreecommitdiffstats
path: root/src/Canvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Canvas.cpp')
-rw-r--r--src/Canvas.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Canvas.cpp b/src/Canvas.cpp
index 7ac9745..7daf8e7 100644
--- a/src/Canvas.cpp
+++ b/src/Canvas.cpp
@@ -981,7 +981,8 @@ GanvCanvasImpl::select_drag_handler(GdkEvent* event)
// Select all modules within rect
FOREACH_ITEM(_items, i) {
GanvNode* node = *i;
- if (ganv_node_is_within(
+ if ((void*)node != (void*)_select_rect &&
+ ganv_node_is_within(
node,
ganv_box_get_x1(_select_rect),
ganv_box_get_y1(_select_rect),