diff options
| author | Tim Redfern <tim@getdrop.com> | 2017-12-12 08:18:19 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2017-12-12 08:18:19 +0000 |
| commit | b81a1e4b77ad82315b84dd5eb1a76d80a544bcdd (patch) | |
| tree | 46eead66842d99dafcf5e2cb90972438bcf254ba /gui/src/main.cpp | |
| parent | 633aee47fb7392b807e00e1827fad605fb68642b (diff) | |
menubar is no problem
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; |
