mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Reversed scroll behavior.
This commit is contained in:
parent
1fcfd8b13a
commit
871fde5f72
|
@ -482,9 +482,9 @@ void NotebookTab::mouseMoveEvent(QMouseEvent *event)
|
||||||
void NotebookTab::wheelEvent(QWheelEvent *event)
|
void NotebookTab::wheelEvent(QWheelEvent *event)
|
||||||
{
|
{
|
||||||
if (event->delta() > 0) {
|
if (event->delta() > 0) {
|
||||||
this->notebook_->selectNextTab();
|
|
||||||
} else {
|
|
||||||
this->notebook_->selectPreviousTab();
|
this->notebook_->selectPreviousTab();
|
||||||
|
} else {
|
||||||
|
this->notebook_->selectNextTab();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue