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
720ff532
Commit
720ff532
authored
Jan 06, 2022
by
Julius Künzel
Browse files
GIT_SILENT Fix build after last commit
parent
86a9afe1
Pipeline
#119227
passed with stage
in 5 minutes and 2 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/docktitlebarmanager.h
View file @
720ff532
...
...
@@ -24,7 +24,7 @@ public:
public
slots
:
/** @brief Correctly hide/show dock widget title bars depending on position (floating, tabbed, docked) */
void
u
pdateTitleBars
();
void
slotU
pdateTitleBars
(
bool
isTopLevel
=
true
);
private:
QAction
*
m_switchAction
;
...
...
@@ -37,7 +37,6 @@ private slots:
void
slotShowTitleBars
(
bool
show
);
/** @brief Toggles the the global visible state of the DockWidget title bars */
void
slotSwitchTitleBars
();
void
slotUpdateTitleBars
(
bool
isTopLevel
=
true
);
};
#endif
src/mainwindow.cpp
View file @
720ff532
...
...
@@ -497,7 +497,7 @@ void MainWindow::init(const QString &mltPath)
auto
*
scmanager
=
new
ScopeManager
(
this
);
auto
*
titleBars
=
new
DockTitleBarManager
(
this
);
connect
(
layoutManager
,
&
LayoutManagement
::
updateTitleBars
,
titleBars
,
&
DockTitleBarManager
::
u
pdateTitleBars
);
connect
(
layoutManager
,
&
LayoutManagement
::
updateTitleBars
,
titleBars
,
[
&
]
()
{
titleBars
->
slotU
pdateTitleBars
();
}
);
m_extraFactory
=
new
KXMLGUIClient
(
this
);
buildDynamicActions
();
...
...
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