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
9e2983ce
Commit
9e2983ce
authored
Feb 14, 2020
by
Jean-Baptiste Mardelle
Browse files
update Windows OpenGL backend names to more user friendly names
parent
dffcd796
Pipeline
#15034
passed with stage
in 26 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
9e2983ce
...
...
@@ -1243,12 +1243,12 @@ void MainWindow::setupActions()
openGLAuto
->
setCheckable
(
true
);
openGLAuto
->
setChecked
(
glBackend
==
0
);
QAction
*
openGLDesktop
=
new
QAction
(
i18n
(
"
Desktop
OpenGL"
),
this
);
QAction
*
openGLDesktop
=
new
QAction
(
i18n
(
"OpenGL"
),
this
);
openGLDesktop
->
setData
(
Qt
::
AA_UseDesktopOpenGL
);
openGLDesktop
->
setCheckable
(
true
);
openGLDesktop
->
setChecked
(
glBackend
==
Qt
::
AA_UseDesktopOpenGL
);
QAction
*
openGLES
=
new
QAction
(
i18n
(
"
Open
GLE
S
"
),
this
);
QAction
*
openGLES
=
new
QAction
(
i18n
(
"
DirectX (AN
GLE
)
"
),
this
);
openGLES
->
setData
(
Qt
::
AA_UseOpenGLES
);
openGLES
->
setCheckable
(
true
);
openGLES
->
setChecked
(
glBackend
==
Qt
::
AA_UseOpenGLES
);
...
...
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