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 Add-ons
Commits
62730341
Commit
62730341
authored
Oct 09, 2020
by
Alexander Lohnau
💬
Browse files
Use higher match priority and copy suggested text
parent
158386f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
runners/spellchecker/spellcheck.cpp
View file @
62730341
...
...
@@ -215,7 +215,7 @@ void SpellCheckRunner::match(Plasma::RunnerContext &context)
const
bool
correct
=
speller
->
checkAndSuggest
(
query
,
suggestions
);
if
(
correct
)
{
Plasma
::
QueryMatch
match
(
this
);
match
.
setType
(
Plasma
::
QueryMatch
::
Informational
Match
);
match
.
setType
(
Plasma
::
QueryMatch
::
Exact
Match
);
match
.
setIconName
(
QStringLiteral
(
"checkbox"
));
match
.
setText
(
query
);
match
.
setSubtext
(
i18nc
(
"Term is spelled correctly"
,
"Correct"
));
...
...
@@ -224,7 +224,7 @@ void SpellCheckRunner::match(Plasma::RunnerContext &context)
}
else
{
for
(
const
auto
&
suggestion
:
qAsConst
(
suggestions
))
{
Plasma
::
QueryMatch
match
(
this
);
match
.
setType
(
Plasma
::
QueryMatch
::
Informational
Match
);
match
.
setType
(
Plasma
::
QueryMatch
::
Exact
Match
);
match
.
setIconName
(
QStringLiteral
(
"edit-rename"
));
match
.
setText
(
suggestion
);
match
.
setSubtext
(
i18n
(
"Suggested term"
));
...
...
@@ -234,7 +234,7 @@ void SpellCheckRunner::match(Plasma::RunnerContext &context)
}
}
else
{
Plasma
::
QueryMatch
match
(
this
);
match
.
setType
(
Plasma
::
QueryMatch
::
Informational
Match
);
match
.
setType
(
Plasma
::
QueryMatch
::
Exact
Match
);
match
.
setIconName
(
QStringLiteral
(
"data-error"
));
match
.
setText
(
i18n
(
"No dictionary found, please install hspell"
));
match
.
setActions
(
m_actions
);
...
...
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