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
44a9f4d8
Commit
44a9f4d8
authored
Mar 01, 2021
by
Julius Künzel
Committed by
Jean-Baptiste Mardelle
Mar 01, 2021
Browse files
Change shortcut for Loop Zone to avoid conflict with windows system
shortcut Fixes
#791
parent
3fe09bd0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
44a9f4d8
...
...
@@ -1365,7 +1365,7 @@ void MainWindow::setupActions()
m_playZone
=
addAction
(
QStringLiteral
(
"monitor_play_zone"
),
i18n
(
"Play Zone"
),
pCore
->
monitorManager
(),
SLOT
(
slotPlayZone
()),
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
Qt
::
CTRL
+
Qt
::
Key_Space
);
m_loopZone
=
addAction
(
QStringLiteral
(
"monitor_loop_zone"
),
i18n
(
"Loop Zone"
),
pCore
->
monitorManager
(),
SLOT
(
slotLoopZone
()),
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
Qt
::
AL
T
+
Qt
::
Key_Space
);
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
Qt
::
CTRL
+
Qt
::
SHIF
T
+
Qt
::
Key_Space
);
m_loopClip
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"media-playback-start"
)),
i18n
(
"Loop selected clip"
),
this
);
addAction
(
QStringLiteral
(
"monitor_loop_clip"
),
m_loopClip
);
m_loopClip
->
setEnabled
(
false
);
...
...
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