diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-05-28 23:50:31 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-05-28 23:50:31 (GMT) |
commit | bf5eac68809e1bb2c38f19f63589bc3a05ffcb72 (patch) | |
tree | 6e42740b80bdcdbd79eedec4fab0932e10c07eb2 /src | |
parent | 145bc6df6163c74841e722a1ca8e954e4c9ebf6a (diff) |
tweaks, add more documentation, fix opencsg.h bug
Diffstat (limited to 'src')
-rw-r--r-- | src/glview.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glview.cc b/src/glview.cc index aa2e746..82ca084 100644 --- a/src/glview.cc +++ b/src/glview.cc @@ -600,7 +600,7 @@ void GLView::mouseMoveEvent(QMouseEvent *event) double mz = -(dy) * viewer_distance/1000; double my = 0; - if (event->buttons() & Qt::MiddleButton) { + if (event->buttons() & Qt::MidButton) { my = mz; mz = 0; // actually lock the x-position |