diff --git a/src/cmd/sim_main.cc b/src/cmd/sim_main.cc index be8f410ae7..68a2eb77ec 100644 --- a/src/cmd/sim_main.cc +++ b/src/cmd/sim_main.cc @@ -483,7 +483,13 @@ int main(int argc, char** argv) bool blocking = true; #ifdef WITH_GUI + // quick start dialog is not currently supported on Windows, + // see https://github.com/gazebosim/gz-sim/issues/3106 + #ifndef _WIN32 opt->waitGui = 1; + #else + opt->waitGui = 0; + #endif blocking = false; // Launch the GUI in a separate thread