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
Education
Cantor
Commits
0e26e356
Commit
0e26e356
authored
Jul 16, 2020
by
Shubham .
Browse files
Fix the Search completer
parent
2da16e03
Changes
1
Show whitespace changes
Inline
Side-by-side
src/panelplugins/documentationpanel/documentationpanelwidget.cpp
View file @
0e26e356
...
...
@@ -355,6 +355,10 @@ void DocumentationPanelWidget::contextSensitiveHelp(const QString& keyword)
m_index
->
filterIndices
(
keyword
);
// filter exactly, no wildcards
m_index
->
activateCurrentItem
();
// this internally emitts the QHelpIndexWidget::linkActivated signal
// called in order to refresh and restore the index widget
// otherwise filterIndices() filters the indices list, and then the index widget only contains the matched keywords
m_index
->
filterIndices
(
QString
());
}
void
DocumentationPanelWidget
::
searchForward
()
...
...
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