[pitivi] ui: calculate well the width of the canvas selection marquee.
- From: Thibault Saunier <tsaunier src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] ui: calculate well the width of the canvas selection marquee.
- Date: Tue, 24 May 2011 18:53:42 +0000 (UTC)
commit 26a463fd5307a34f6753a8ee9c029c91392b99e0
Author: Thibault Saunier <thibault saunier collabora co uk>
Date: Mon May 23 13:43:59 2011 -0400
ui: calculate well the width of the canvas selection marquee.
Fixes #632391
pitivi/ui/timelinecanvas.py | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/pitivi/ui/timelinecanvas.py b/pitivi/ui/timelinecanvas.py
index 9e4b3cd..13c6452 100644
--- a/pitivi/ui/timelinecanvas.py
+++ b/pitivi/ui/timelinecanvas.py
@@ -199,12 +199,14 @@ class TimelineCanvas(goocanvas.Canvas, Zoomable, Loggable):
return tracks, track_objects
- def _normalize(self, p1, p2):
+ def _normalize(self, p1, p2, adjust=0):
w, h = p2 - p1
x, y = p1
- if w < 0:
- w = abs(w)
+ if w - adjust < 0:
+ w = abs(w - adjust)
x -= w
+ else:
+ w -= adjust
if h < 0:
h = abs(h)
y -= h
@@ -214,10 +216,9 @@ class TimelineCanvas(goocanvas.Canvas, Zoomable, Loggable):
if self._selecting:
self._got_motion_notify = True
cur = self.from_event(event)
- pos, size = self._normalize(self._mousedown, cur)
- x, y = pos
- x += self.app.gui.timeline.hadj.get_value()
- self._marquee.props.x, self._marquee.props.y = (x, y)
+ pos, size = self._normalize(self._mousedown, cur,
+ self.app.gui.timeline.hadj.get_value())
+ self._marquee.props.x, self._marquee.props.y = pos
self._marquee.props.width, self._marquee.props.height = size
return True
return False
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]