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
Plasma
Plasma Workspace
Commits
e92d1d69
Commit
e92d1d69
authored
Mar 03, 2022
by
Oleg Solovyov
🐴
Committed by
Nate Graham
Mar 03, 2022
Browse files
Show panel config above other windows
BUG: 450794
FIXED-IN: 5.24.3
parent
892c5a27
Pipeline
#144933
passed with stage
in 7 minutes and 28 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
shell/panelconfigview.cpp
View file @
e92d1d69
...
...
@@ -186,7 +186,8 @@ void PanelConfigView::showEvent(QShowEvent *ev)
QQuickWindow
::
showEvent
(
ev
);
KWindowSystem
::
setType
(
winId
(),
NET
::
Dock
);
setFlags
(
Qt
::
WindowFlags
((
flags
()
|
Qt
::
FramelessWindowHint
)
&
(
~
Qt
::
WindowDoesNotAcceptFocus
)));
setFlags
(
Qt
::
WindowFlags
((
flags
()
|
Qt
::
FramelessWindowHint
)
&
(
~
Qt
::
WindowDoesNotAcceptFocus
))
|
Qt
::
X11BypassWindowManagerHint
|
Qt
::
WindowStaysOnTopHint
);
KWindowSystem
::
setState
(
winId
(),
NET
::
KeepAbove
);
KWindowSystem
::
forceActiveWindow
(
winId
());
updateBlurBehindAndContrast
();
...
...
Oleg Solovyov
🐴
@osolovyov
mentioned in commit
83400745
·
Mar 03, 2022
mentioned in commit
83400745
mentioned in commit 83400745d82bfe69b3fe176677931fa8ec86763c
Toggle commit list
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