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
76e793d4
Commit
76e793d4
authored
Jun 30, 2020
by
Julius Künzel
Browse files
Layout Improvement: Use TopLeftCorner and BottomLeftCorner for LeftDockWidgetArea
parent
c5f7ad61
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mainwindow.cpp
View file @
76e793d4
...
...
@@ -440,8 +440,11 @@ void MainWindow::init()
tabifyDockWidget
(
m_effectStackDock
,
pCore
->
bin
()
->
clipPropertiesDock
());
bool
firstRun
=
readOptions
();
// Use the corners for left and right DockWidgetArea
setCorner
(
Qt
::
TopRightCorner
,
Qt
::
RightDockWidgetArea
);
setCorner
(
Qt
::
BottomRightCorner
,
Qt
::
RightDockWidgetArea
);
setCorner
(
Qt
::
TopLeftCorner
,
Qt
::
LeftDockWidgetArea
);
setCorner
(
Qt
::
BottomLeftCorner
,
Qt
::
LeftDockWidgetArea
);
// Build effects menu
m_effectsMenu
=
new
QMenu
(
i18n
(
"Add Effect"
),
this
);
...
...
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