|
From: Tapio V. <aa...@us...> - 2011-01-07 13:39:50
|
Module: editor
Branch: master
Commit: cb3bc8963d84a72d7f1929637a986670ecbc17b2
Author: Tapio Vierros <tap...@gm...>
Date: Fri Jan 7 15:39:24 2011 +0200
Fix left-side resizing.
---
notegraphwidget.cc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/notegraphwidget.cc b/notegraphwidget.cc
index 7832ee4..99a6381 100644
--- a/notegraphwidget.cc
+++ b/notegraphwidget.cc
@@ -109,6 +109,7 @@ void NoteGraphWidget::mousePressEvent(QMouseEvent *event)
// Start a resize
m_resizingNote = child;
child->startResizing( (hotSpot.x() < resizeHandleSize) ? -1 : 1 );
+ child->disableFloating();
} else {
// Start a drag
|