diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-05-31 18:18:28 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-05-31 18:18:28 +0100 |
| commit | 23879cc5bf88de215f10de14f1a3de9b6b2f586a (patch) | |
| tree | 2d665c3c06e45b9696cd82ff5abcf18d71d6b47f /gistanalysis/src/main.cpp | |
| parent | bc654332edf65b0425c170db16db6c8dd1f80e8c (diff) | |
fixed rounding bug
Diffstat (limited to 'gistanalysis/src/main.cpp')
| -rw-r--r-- | gistanalysis/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gistanalysis/src/main.cpp b/gistanalysis/src/main.cpp index 88fea88..980f11b 100644 --- a/gistanalysis/src/main.cpp +++ b/gistanalysis/src/main.cpp @@ -18,7 +18,7 @@ int main(int argc, char *argv[]){ mainWindow->setVerticalSync(false); settings.width = 600; - settings.height = 900; + settings.height = 1160; settings.setPosition(ofVec2f(0,0)); settings.resizable = true; |
