Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
kdenlive
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Farid Abdelnour
kdenlive
Commits
1fde3be3
Commit
1fde3be3
authored
Dec 07, 2015
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove frame number in monitor overlay until we implement a proper UI to display it
CCBUG: 352816
parent
7a92ff86
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
22 deletions
+3
-22
data/kdenlivemonitor.qml
data/kdenlivemonitor.qml
+0
-21
src/monitor/monitor.cpp
src/monitor/monitor.cpp
+3
-1
No files found.
data/kdenlivemonitor.qml
View file @
1fde3be3
...
...
@@ -7,30 +7,9 @@ Item {
// default size, but scalable by user
height
:
300
;
width
:
400
property
string
comment
property
string
framenum
property
point
center
property
double
scale
Rectangle
{
id
:
overlaybg
anchors
{
right
:
parent
.
right
//left: parent.left
bottom
:
parent
.
bottom
}
width
:
label
.
width
+
10
height
:
label
.
height
+
10
//height: root.height * 0.1
color
:
"
#99ff0000
"
Text
{
id
:
label
objectName
:
"
overlaytext
"
anchors.centerIn
:
parent
text
:
root
.
framenum
}
}
Rectangle
{
objectName
:
"
marker
"
anchors
{
...
...
src/monitor/monitor.cpp
View file @
1fde3be3
...
...
@@ -1453,10 +1453,12 @@ void Monitor::onFrameDisplayed(const SharedFrame& frame)
if
(
!
render
->
checkFrameNumber
(
position
))
{
m_playAction
->
setActive
(
false
);
}
/*
// display frame number in monitor overlay, currently disabled
if (m_rootItem && m_rootItem->objectName() == "root") {
// we are in main view, show frame
m_rootItem->setProperty("framenum", QString::number(position));
}
}
*/
if
(
position
>=
m_length
)
{
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