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
39272b99
Commit
39272b99
authored
Jun 16, 2020
by
Jean-Baptiste Mardelle
Browse files
Rename OpenTimelineIO import/export actions for clarity.
Fixes
#692
parent
e9ad1a7a
Pipeline
#23853
failed with stage
in 3 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
39272b99
...
...
@@ -1323,10 +1323,10 @@ void MainWindow::setupActions()
addAction
(
QStringLiteral
(
"dvd_wizard"
),
i18n
(
"DVD Wizard"
),
this
,
SLOT
(
slotDvdWizard
()),
QIcon
::
fromTheme
(
QStringLiteral
(
"media-optical"
)));
addAction
(
QStringLiteral
(
"transcode_clip"
),
i18n
(
"Transcode Clips"
),
this
,
SLOT
(
slotTranscodeClip
()),
QIcon
::
fromTheme
(
QStringLiteral
(
"edit-copy"
)));
QAction
*
exportAction
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-export"
)),
i18n
(
"
E&xport projec
t"
),
this
);
QAction
*
exportAction
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-export"
)),
i18n
(
"
OpenTimelineIO E&xpor
t"
),
this
);
connect
(
exportAction
,
&
QAction
::
triggered
,
&
m_otioConvertions
,
&
OtioConvertions
::
slotExportProject
);
addAction
(
QStringLiteral
(
"export_project"
),
exportAction
);
QAction
*
importAction
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-import"
)),
i18n
(
"
&Import projec
t"
),
this
);
QAction
*
importAction
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-import"
)),
i18n
(
"
OpenTimelineIO &Impor
t"
),
this
);
connect
(
importAction
,
&
QAction
::
triggered
,
&
m_otioConvertions
,
&
OtioConvertions
::
slotImportProject
);
addAction
(
QStringLiteral
(
"import_project"
),
importAction
);
...
...
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