Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kdenlive
Commits
c2da5e08
Commit
c2da5e08
authored
May 21, 2020
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix streams menu position
parent
95752259
Pipeline
#20743
passed with stage
in 9 minutes and 28 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/timeline2/view/timelinewidget.cpp
src/timeline2/view/timelinewidget.cpp
+1
-1
No files found.
src/timeline2/view/timelinewidget.cpp
View file @
c2da5e08
...
...
@@ -279,7 +279,7 @@ void TimelineWidget::showTargetMenu(int tid)
}
QVariant
returnedValue
;
QMetaObject
::
invokeMethod
(
rootObject
(),
"getActiveTrackStreamPos"
,
Q_RETURN_ARG
(
QVariant
,
returnedValue
));
m_clickPos
=
QPoint
(
5
,
mapToGlobal
(
QPoint
(
0
,
y
()))
.
y
()
+
returnedValue
.
toInt
());
m_clickPos
=
mapToGlobal
(
QPoint
(
5
,
y
()))
+
QPoint
(
0
,
returnedValue
.
toInt
());
}
QMap
<
int
,
QString
>
possibleTargets
=
m_proxy
->
getCurrentTargets
(
tid
,
currentTargetStream
);
m_targetsMenu
->
clear
();
...
...
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