Fix text cursor in open channel dialog (#4263)

* Fix text cursor not blinking in open channel dialog

* Update CHANGELOG.md

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
Douglas
2022-12-27 14:27:11 -03:00
committed by GitHub
parent 04f685f3f3
commit b2a8327696
2 changed files with 6 additions and 2 deletions
+5 -2
View File
@@ -410,9 +410,12 @@ bool SelectChannelDialog::EventFilter::eventFilter(QObject *watched,
if (radio)
{
radio->setChecked(true);
return true;
}
else
{
return false;
}
return true;
}
else if (event->type() == QEvent::KeyPress)
{