From ad8e3f36adbd32e71aadeca82ad407c8525de6aa Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 3 Aug 2015 13:22:05 +0300 Subject: [PATCH] fixed pointer, version 0.8.45 --- Telegram/SourceFiles/dialogswidget.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/dialogswidget.cpp b/Telegram/SourceFiles/dialogswidget.cpp index 93bc3c11c..89ba6f814 100644 --- a/Telegram/SourceFiles/dialogswidget.cpp +++ b/Telegram/SourceFiles/dialogswidget.cpp @@ -333,9 +333,6 @@ void DialogsListWidget::onUpdateSelected(bool force) { parentWidget()->update(); } } - if (mouseY >= 0 && hashtagSel < 0 && filteredSel < 0 && peopleSel < 0 && searchedSel < 0) { - setCursor(style::cur_default); - } } } @@ -492,6 +489,7 @@ void DialogsListWidget::leaveEvent(QEvent *e) { if (sel || filteredSel >= 0 || hashtagSel >= 0 || searchedSel >= 0 || peopleSel >= 0) { sel = 0; filteredSel = searchedSel = peopleSel = hashtagSel = -1; + setCursor(style::cur_default); parentWidget()->update(); } } @@ -840,6 +838,7 @@ void DialogsListWidget::setMouseSel(bool msel, bool toTop) { contactSel = !dialogs.list.count && contactsNoDialogs.list.count; } else if (_state == FilteredState || _state == SearchedState) { // don't select first elem in search filteredSel = peopleSel = searchedSel = hashtagSel = -1; + setCursor(style::cur_default); } } }