diff --git a/CHANGELOG.md b/CHANGELOG.md index cdff12758..97722f477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unversioned +- Minor: Search window input will automatically use currently selected text if present. (#4178) - Minor: Cleared up highlight sound settings (#4194) - Bugfix: Fixed highlight sounds not reloading on change properly. (#4194) - Bugfix: Fixed CTRL + C not working in reply thread popups. (#4209) diff --git a/src/widgets/helper/SearchPopup.cpp b/src/widgets/helper/SearchPopup.cpp index 8afd8bb80..990e6759c 100644 --- a/src/widgets/helper/SearchPopup.cpp +++ b/src/widgets/helper/SearchPopup.cpp @@ -62,6 +62,12 @@ SearchPopup::SearchPopup(QWidget *parent, Split *split) , split_(split) { this->initLayout(); + if (this->split_ && this->split_->getChannelView().hasSelection()) + { + this->searchInput_->setText( + this->split_->getChannelView().getSelectedText().trimmed()); + this->searchInput_->selectAll(); + } this->resize(400, 600); this->addShortcuts(); }