Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kdenlive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
260
Issues
260
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Multimedia
Kdenlive
Commits
8473c6ca
Commit
8473c6ca
authored
Mar 06, 2018
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix clip zone not set in clip monitor
parent
b52212ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
src/monitor/glwidget.h
src/monitor/glwidget.h
+6
-0
src/monitor/monitor.cpp
src/monitor/monitor.cpp
+1
-0
No files found.
src/monitor/glwidget.h
View file @
8473c6ca
...
...
@@ -340,6 +340,12 @@ public:
m_zoneOut
=
out
;
emit
zoneChanged
();
}
void
setZone
(
QPoint
zone
)
{
m_zoneIn
=
zone
.
x
();
m_zoneOut
=
zone
.
y
();
emit
zoneChanged
();
}
QPoint
zone
()
const
{
return
QPoint
(
m_zoneIn
,
m_zoneOut
);
}
signals:
void
seekPositionChanged
();
...
...
src/monitor/monitor.cpp
View file @
8473c6ca
...
...
@@ -1365,6 +1365,7 @@ void Monitor::slotOpenClip(std::shared_ptr<ProjectClip> controller, int in, int
m_glMonitor
->
setRulerInfo
(
m_controller
->
frameDuration
(),
controller
->
getMarkerModel
());
m_timePos
->
setRange
(
0
,
m_controller
->
frameDuration
());
updateMarkers
();
m_glMonitor
->
getControllerProxy
()
->
setZone
(
m_controller
->
zone
());
// Loading new clip / zone, stop if playing
if
(
m_playAction
->
isActive
())
{
m_playAction
->
setActive
(
false
);
...
...
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