mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Fix search by recently used hashtags.
This commit is contained in:
parent
9d313d2827
commit
fdee5f9227
1 changed files with 3 additions and 1 deletions
|
@ -307,7 +307,9 @@ Widget::Widget(
|
||||||
QObject::connect(
|
QObject::connect(
|
||||||
_filter->rawTextEdit().get(),
|
_filter->rawTextEdit().get(),
|
||||||
&QTextEdit::cursorPositionChanged,
|
&QTextEdit::cursorPositionChanged,
|
||||||
[=] { filterCursorMoved(); });
|
this,
|
||||||
|
[=] { filterCursorMoved(); },
|
||||||
|
Qt::QueuedConnection); // So getLastText() works already.
|
||||||
|
|
||||||
if (!Core::UpdaterDisabled()) {
|
if (!Core::UpdaterDisabled()) {
|
||||||
Core::UpdateChecker checker;
|
Core::UpdateChecker checker;
|
||||||
|
|
Loading…
Add table
Reference in a new issue