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
System
KHelpCenter
Commits
0b2eefd6
Commit
0b2eefd6
authored
Oct 16, 2022
by
Nicolas Fella
Browse files
Fix window raising on Wayland
winId() doesn't work there, use windowHandle() instead
parent
31e5a1f0
Pipeline
#249403
passed with stage
in 53 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
0b2eefd6
...
...
@@ -10,7 +10,7 @@ set (RELEASE_SERVICE_COMPACT_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}${RELEASE_
project
(
KHelpCenter VERSION
"5.8.
${
RELEASE_SERVICE_COMPACT_VERSION
}
"
)
set
(
QT_MIN_VERSION
"5.15.0"
)
set
(
KF_MIN_VERSION
"5.8
5
.0"
)
set
(
KF_MIN_VERSION
"5.8
9
.0"
)
find_package
(
ECM
${
KF_MIN_VERSION
}
REQUIRED NO_MODULE
)
set
(
CMAKE_MODULE_PATH
${
ECM_MODULE_PATH
}
)
...
...
application.cpp
View file @
0b2eefd6
...
...
@@ -62,7 +62,7 @@ void Application::activateForStartLikeCall()
#endif
mMainWindow
->
raise
();
KWindowSystem
::
activateWindow
(
mMainWindow
->
win
I
d
());
KWindowSystem
::
activateWindow
(
mMainWindow
->
wind
owHandle
());
}
void
Application
::
newInstance
()
...
...
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