Implement #114
This commit is contained in:
parent
d82782397f
commit
0ab9273a25
@ -122,7 +122,16 @@ QuickSwitcher::QuickSwitcher(QWidget *parent)
|
|||||||
roomSearch_, &RoomSearchInput::hiding, this, [=]() { completer_->popup()->hide(); });
|
roomSearch_, &RoomSearchInput::hiding, this, [=]() { completer_->popup()->hide(); });
|
||||||
connect(roomSearch_, &QLineEdit::returnPressed, this, [=]() {
|
connect(roomSearch_, &QLineEdit::returnPressed, this, [=]() {
|
||||||
emit closing();
|
emit closing();
|
||||||
emit roomSelected(rooms_[this->roomSearch_->text().trimmed()]);
|
|
||||||
|
QString text("");
|
||||||
|
|
||||||
|
if (selection_ == -1) {
|
||||||
|
completer_->setCurrentRow(0);
|
||||||
|
text = completer_->currentCompletion();
|
||||||
|
} else {
|
||||||
|
text = this->roomSearch_->text().trimmed();
|
||||||
|
}
|
||||||
|
emit roomSelected(rooms_[text]);
|
||||||
|
|
||||||
roomSearch_->clear();
|
roomSearch_->clear();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user