Skip to content
GitLab
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
ef1dc06f
Commit
ef1dc06f
authored
Jul 28, 2022
by
Jean-Baptiste Mardelle
Browse files
Add tooltip for dragging audio/video component to another track (Meta)
parent
48cdf5ef
Pipeline
#209753
passed with stage
in 6 minutes and 55 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
ef1dc06f
...
...
@@ -3132,8 +3132,15 @@ void MainWindow::showToolMessage()
QString
message
;
QString
toolLabel
;
if
(
m_buttonSelectTool
->
isChecked
())
{
message
=
xi18nc
(
"@info:whatsthis"
,
"<shortcut>Shift drag</shortcut> for rubber-band selection, <shortcut>Shift click</shortcut> for multiple "
"selection, <shortcut>Ctrl drag</shortcut> to pan"
);
#ifdef Q_OS_WIN
message
=
xi18nc
(
"@info:whatsthis"
,
"<shortcut>Shift drag</shortcut> for rubber-band selection, <shortcut>Shift click</shortcut> for multiple "
"selection, <shortcut>Meta drag</shortcut> to move a grouped clip to another track, <shortcut>Ctrl drag</shortcut> to pan"
);
#else
message
=
xi18nc
(
"@info:whatsthis"
,
"<shortcut>Shift drag</shortcut> for rubber-band selection, <shortcut>Shift click</shortcut> for multiple "
"selection, <shortcut>Meta + Alt drag</shortcut> to move a grouped clip to another track, <shortcut>Ctrl drag</shortcut> to pan"
);
#endif
toolLabel
=
i18n
(
"Select"
);
}
else
if
(
m_buttonRazorTool
->
isChecked
())
{
message
=
xi18nc
(
"@info:whatsthis"
,
"<shortcut>Shift</shortcut> to preview cut frame"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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