diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-27 02:06:33 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-27 02:06:33 +0100 |
commit | 83371248fca5ab217def81ee101ecdb0d299cee4 (patch) | |
tree | 288abb4699f80c79f00e8a20fe3928e60d7241fd /gui | |
parent | 6db0731ea5a4b27cba43bc105bcd7eb8bae52362 (diff) | |
download | nextpnr-83371248fca5ab217def81ee101ecdb0d299cee4.tar.gz nextpnr-83371248fca5ab217def81ee101ecdb0d299cee4.tar.bz2 nextpnr-83371248fca5ab217def81ee101ecdb0d299cee4.zip |
gui: rejigger maximum zoom out
Diffstat (limited to 'gui')
-rw-r--r-- | gui/fpgaviewwidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/fpgaviewwidget.h b/gui/fpgaviewwidget.h index a3593bd4..732f4e3e 100644 --- a/gui/fpgaviewwidget.h +++ b/gui/fpgaviewwidget.h @@ -124,7 +124,7 @@ class FPGAViewWidget : public QOpenGLWidget, protected QOpenGLFunctions private: const float zoomNear_ = 0.1f; // do not zoom closer than this - const float zoomFar_ = 100.0f; // do not zoom further than this + const float zoomFar_ = 30.0f; // do not zoom further than this const float zoomLvl1_ = 1.0f; const float zoomLvl2_ = 5.0f; |