fix broken mousewheel scrolling (bug introduced by ctrl-wheel-zoom feature)

felipesanches-svg
don bright 2012-08-01 14:57:38 -05:00
parent 5d0825efd7
commit 24fbfdf955
1 changed files with 2 additions and 0 deletions

View File

@ -104,6 +104,8 @@ void Editor::wheelEvent ( QWheelEvent * event )
zoomIn();
else if (event->delta() < 0 )
zoomOut();
} else {
QTextEdit::wheelEvent( event );
}
}