Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/cmd/sim_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading