Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
d034d62b
Commit
d034d62b
authored
Mar 26, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix incorrect cast
parent
540b919f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/monitor/monitorproxy.cpp
View file @
d034d62b
...
...
@@ -74,7 +74,7 @@ void MonitorProxy::seek(int delta, uint modifiers)
int
MonitorProxy
::
overlayType
()
const
{
return
(
q
->
m_id
==
int
(
Kdenlive
::
ClipMonitor
?
KdenliveSettings
::
clipMonitorOverlayGuides
()
:
KdenliveSettings
::
projectMonitorOverlayGuides
())
)
;
return
(
q
->
m_id
==
int
(
Kdenlive
::
ClipMonitor
)
?
KdenliveSettings
::
clipMonitorOverlayGuides
()
:
KdenliveSettings
::
projectMonitorOverlayGuides
());
}
void
MonitorProxy
::
setOverlayType
(
int
ix
)
...
...
Write
Preview
Supports
Markdown
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