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
KWin
Commits
ee625b2d
Commit
ee625b2d
authored
Mar 28, 2022
by
Aleix Pol Gonzalez
🐧
Browse files
Fix unlocking wayland sessions
We were never issuing a repaint which confused thoroughly the compositor.
BUG: 447705
parent
7a26f93c
Pipeline
#163734
passed with stage
in 12 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/wayland_server.cpp
View file @
ee625b2d
...
...
@@ -15,6 +15,7 @@
#include
"inputpanelv1integration.h"
#include
"keyboard_input.h"
#include
"screens.h"
#include
"scene.h"
#include
"layershellv1integration.h"
#include
"main.h"
#include
"xdgshellintegration.h"
...
...
@@ -610,6 +611,7 @@ void WaylandServer::initScreenLocker()
connect
(
seat
,
&
KWaylandServer
::
SeatInterface
::
timestampChanged
,
screenLockerApp
,
&
ScreenLocker
::
KSldApp
::
userActivity
);
}
Compositor
::
self
()
->
scene
()
->
addRepaintFull
();
}
);
...
...
@@ -627,6 +629,7 @@ void WaylandServer::initScreenLocker()
screenLockerApp
,
&
ScreenLocker
::
KSldApp
::
userActivity
);
}
ScreenLocker
::
KSldApp
::
self
()
->
setWaylandFd
(
-
1
);
Compositor
::
self
()
->
scene
()
->
addRepaintFull
();
}
);
...
...
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