Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kdenlive
Commits
e16c37c8
Commit
e16c37c8
authored
Jul 05, 2020
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add icons to new rows/columns layout
parent
c20d3da6
Pipeline
#25995
failed with stage
in 1 minute and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/dockareaorientationmanager.cpp
src/dockareaorientationmanager.cpp
+2
-2
No files found.
src/dockareaorientationmanager.cpp
View file @
e16c37c8
...
...
@@ -16,11 +16,11 @@ the Free Software Foundation, either version 3 of the License, or
DockAreaOrientationManager
::
DockAreaOrientationManager
(
QObject
*
parent
)
:
QObject
(
parent
)
{
m_verticalAction
=
new
QAction
(
i18n
(
"Arrange Dock Areas In Columns"
),
this
);
m_verticalAction
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"object-columns"
)),
i18n
(
"Arrange Dock Areas In Columns"
),
this
);
pCore
->
window
()
->
addAction
(
QStringLiteral
(
"vertical_dockareaorientation"
),
m_verticalAction
);
connect
(
m_verticalAction
,
&
QAction
::
triggered
,
this
,
&
DockAreaOrientationManager
::
slotVerticalOrientation
);
m_horizontalAction
=
new
QAction
(
i18n
(
"Arrange Dock Areas In Rows"
),
this
);
m_horizontalAction
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"object-rows"
)),
i18n
(
"Arrange Dock Areas In Rows"
),
this
);
pCore
->
window
()
->
addAction
(
QStringLiteral
(
"horizontal_dockareaorientation"
),
m_horizontalAction
);
connect
(
m_horizontalAction
,
&
QAction
::
triggered
,
this
,
&
DockAreaOrientationManager
::
slotHorizontalOrientation
);
}
...
...
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