mirror of https://github.com/procxx/kepka.git
Fix keyboard scrolling in ContactsBox.
This commit is contained in:
parent
f283aa033b
commit
f78335aa67
|
@ -1235,9 +1235,12 @@ void ContactsBox::Inner::leaveEventHook(QEvent *e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void ContactsBox::Inner::mouseMoveEvent(QMouseEvent *e) {
|
void ContactsBox::Inner::mouseMoveEvent(QMouseEvent *e) {
|
||||||
_mouseSelection = true;
|
auto position = e->globalPos();
|
||||||
_lastMousePos = e->globalPos();
|
if (_mouseSelection || _lastMousePos != position) {
|
||||||
updateSelection();
|
_mouseSelection = true;
|
||||||
|
_lastMousePos = e->globalPos();
|
||||||
|
updateSelection();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ContactsBox::Inner::mousePressEvent(QMouseEvent *e) {
|
void ContactsBox::Inner::mousePressEvent(QMouseEvent *e) {
|
||||||
|
|
Loading…
Reference in New Issue