Skip to content

Commit

Permalink
ui/timeline.py: Select only the clip where you drop an effect (not ad…
Browse files Browse the repository at this point in the history
…d it to the current selection)
  • Loading branch information
tsaunier committed Sep 2, 2010
1 parent e33e37f commit a5a8103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pitivi/ui/timeline.py
Expand Up @@ -38,7 +38,7 @@
from pitivi.receiver import receiver, handler
from zoominterface import Zoomable
from pitivi.ui.common import LAYER_HEIGHT_EXPANDED, LAYER_SPACING, TRACK_SPACING
from pitivi.timeline.timeline import MoveContext, SELECT_ADD
from pitivi.timeline.timeline import MoveContext, SELECT
from pitivi.utils import Seeker
from pitivi.ui.filelisterrordialog import FileListErrorDialog
from pitivi.ui.curve import Curve
Expand Down Expand Up @@ -452,7 +452,7 @@ def _dragDropCb(self, widget, context, x, y, timestamp):
self.app.current.seeker.seek(self._position)
context.drop_finish(True, timestamp)

self.timeline.selection.setTo(timeline_objs, SELECT_ADD)
self.timeline.selection.setTo(timeline_objs, SELECT)

return True

Expand Down

0 comments on commit a5a8103

Please sign in to comment.