+ do not reset viewing mode when animating 3d view

This commit is contained in:
wmayer
2013-07-01 12:50:00 +02:00
parent 2977584307
commit e5741863aa
5 changed files with 5 additions and 5 deletions

View File

@@ -93,7 +93,7 @@ bool DemoMode::eventFilter(QObject *obj, QEvent *event)
if (event->type() == QEvent::MouseMove) {
if (ui->fullscreen->isChecked()) {
QPoint point = QCursor::pos() - oldPos;
if (point.manhattanLength() > 10) {
if (point.manhattanLength() > 5) {
show();
showHideTimer->start();
}