diff options
Diffstat (limited to 'gui/src/main.cpp')
| -rw-r--r-- | gui/src/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gui/src/main.cpp b/gui/src/main.cpp index 391b99f..3e4c327 100644 --- a/gui/src/main.cpp +++ b/gui/src/main.cpp @@ -28,12 +28,14 @@ int main(int argc, char *argv[]){ settings.width = 1024; settings.height = 576; - settings.setPosition(ofVec2f(300,0)); + settings.setPosition(ofVec2f(1700,0)); settings.resizable = true; + //settings.decorated = false; //doesn't suppress FS title bar shared_ptr<ofAppBaseWindow> mainWindow = ofCreateWindow(settings); - // uncomment next line to share main's OpenGL resources with gui + // share OpenGL resources with other windows settings.shareContextWith = mainWindow; + settings.decorated = true; settings.width = 800; settings.height = 450; |
