fixed pointer, version 0.8.45

This commit is contained in:
John Preston 2015-08-03 13:22:05 +03:00
parent 0d381870a7
commit ad8e3f36ad

View File

@ -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);
}
}
}