From 9ebc3b058de3f0145771215b3c276559bdd80587 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Tue, 11 May 2021 23:34:16 -0700 Subject: [PATCH] [outlineviewer] Change default size to 600x400 (#3353) --- outlineviewer/src/main/native/cpp/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outlineviewer/src/main/native/cpp/main.cpp b/outlineviewer/src/main/native/cpp/main.cpp index 0bfd91614e..061c9045bc 100644 --- a/outlineviewer/src/main/native/cpp/main.cpp +++ b/outlineviewer/src/main/native/cpp/main.cpp @@ -218,7 +218,7 @@ int main() { gui::AddLateExecute(DisplayGui); - gui::Initialize("OutlineViewer - DISCONNECTED", 1024, 768); + gui::Initialize("OutlineViewer - DISCONNECTED", 600, 400); gui::Main(); gModel.reset();