Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
4e7a0055
Commit
4e7a0055
authored
Aug 14, 2009
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bug where rushes can't be moved in some cases
parent
8ddc86fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/gui/TracksView.cpp
src/gui/TracksView.cpp
+1
-1
No files found.
src/gui/TracksView.cpp
View file @
4e7a0055
...
...
@@ -168,7 +168,7 @@ void TracksView::moveMediaItem( const QUuid& uuid, unsigned int track, qint64 ti
void
TracksView
::
moveMediaItem
(
AbstractGraphicsMediaItem
*
item
,
QPoint
position
)
{
GraphicsTrack
*
track
=
NULL
;
QList
<
QGraphicsItem
*>
list
=
items
(
position
);
QList
<
QGraphicsItem
*>
list
=
items
(
0
,
position
.
y
()
);
for
(
int
i
=
0
;
i
<
list
.
size
();
++
i
)
{
track
=
qgraphicsitem_cast
<
GraphicsTrack
*>
(
list
.
at
(
i
)
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment