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
683fab3c
Commit
683fab3c
authored
Mar 31, 2020
by
Jean-Baptiste Mardelle
Browse files
Improve track action descriptions
parent
f50b14ad
Pipeline
#17593
passed with stage
in 14 minutes and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/timelineitemmodel.cpp
View file @
683fab3c
...
...
@@ -446,7 +446,7 @@ void TimelineItemModel::setTrackName(int trackId, const QString &text)
return
true
;
};
redo_lambda
();
PUSH_UNDO
(
undo_lambda
,
redo_lambda
,
i18n
(
"
Edit item
"
));
PUSH_UNDO
(
undo_lambda
,
redo_lambda
,
i18n
(
"
Rename Track
"
));
}
void
TimelineItemModel
::
hideTrack
(
int
trackId
,
const
QString
state
)
...
...
@@ -462,7 +462,7 @@ void TimelineItemModel::hideTrack(int trackId, const QString state)
return
true
;
};
redo_lambda
();
PUSH_UNDO
(
undo_lambda
,
redo_lambda
,
i18n
(
"Edit item
"
));
PUSH_UNDO
(
undo_lambda
,
redo_lambda
,
state
==
QLatin1String
(
"3"
)
?
i18n
(
"Hide Track"
)
:
i18n
(
"Enable Track
"
));
}
void
TimelineItemModel
::
setTrackProperty
(
int
trackId
,
const
QString
&
name
,
const
QString
&
value
)
...
...
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