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
9a5d34cf
Commit
9a5d34cf
authored
May 06, 2022
by
Marco Martin
Browse files
default value as false
this should also fix compilation on Qt6
parent
eca9b504
Pipeline
#172612
passed with stage
in 28 minutes and 39 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kcmkwin/kwinscreenedges/main.cpp
View file @
9a5d34cf
...
...
@@ -161,7 +161,7 @@ void KWinScreenEdgesConfig::monitorInit()
const
auto
scripts
=
KPackage
::
PackageLoader
::
self
()
->
listPackages
(
QStringLiteral
(
"KWin/Script"
),
scriptFolder
);
for
(
const
KPluginMetaData
&
script
:
scripts
)
{
if
(
script
.
value
(
QStringLiteral
(
"X-KWin-Border-Activate"
))
!=
true
)
{
if
(
script
.
value
(
QStringLiteral
(
"X-KWin-Border-Activate"
)
,
false
)
!=
true
)
{
continue
;
}
...
...
src/kcmkwin/kwinscreenedges/touch.cpp
View file @
9a5d34cf
...
...
@@ -158,7 +158,7 @@ void KWinScreenEdgesConfig::monitorInit()
const
auto
scripts
=
KPackage
::
PackageLoader
::
self
()
->
listPackages
(
QStringLiteral
(
"KWin/Script"
),
scriptFolder
);
for
(
const
KPluginMetaData
&
script
:
scripts
)
{
if
(
script
.
value
(
QStringLiteral
(
"X-KWin-Border-Activate"
))
!=
true
)
{
if
(
script
.
value
(
QStringLiteral
(
"X-KWin-Border-Activate"
)
,
false
)
!=
true
)
{
continue
;
}
...
...
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