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
d9528a5d
Commit
d9528a5d
authored
Oct 27, 2020
by
Ismael Asensio
Browse files
kwinrules: Change singal name to better match its meaning
parent
335eca22
Changes
3
Hide whitespace changes
Inline
Side-by-side
kcmkwin/kwinrules/package/contents/ui/RulesEditor.qml
View file @
d9528a5d
...
...
@@ -94,7 +94,6 @@ ScrollViewKCM {
text
:
i18n
(
"
Detect Window Properties
"
)
icon.name
:
"
edit-find
"
onClicked
:
{
overlayModel
.
onlySuggestions
=
true
;
rulesModel
.
detectWindowProperties
(
delaySpin
.
value
);
}
}
...
...
@@ -113,7 +112,8 @@ ScrollViewKCM {
Connections
{
target
:
rulesModel
function
onSuggestionsChanged
()
{
function
onShowSuggestions
()
{
overlayModel
.
onlySuggestions
=
true
;
propertySheet
.
sheetOpen
=
true
;
}
}
...
...
kcmkwin/kwinrules/rulesmodel.cpp
View file @
d9528a5d
...
...
@@ -833,7 +833,7 @@ void RulesModel::selectX11Window()
}
const
QVariantMap
windowInfo
=
reply
.
value
();
setSuggestedProperties
(
windowInfo
);
emit
suggestions
Changed
();
emit
s
howS
uggestions
();
}
);
}
...
...
kcmkwin/kwinrules/rulesmodel.h
View file @
d9528a5d
...
...
@@ -83,7 +83,7 @@ public slots:
signals:
void
descriptionChanged
();
void
warningMessageChanged
();
void
suggestions
Changed
();
void
s
howS
uggestions
();
void
virtualDesktopsUpdated
();
...
...
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