Skip to content

Commit

Permalink
wow it just... worked
Browse files Browse the repository at this point in the history
  • Loading branch information
zadjii-msft committed Feb 1, 2023
1 parent f5b030c commit 2c4613a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/cascadia/WindowsTerminal/WindowEmperor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,14 @@ void WindowEmperor::WaitForWindows()
WindowThread foo{ _app.Logic() };
return foo.WindowProc();
} };

Sleep(2000);

std::thread two{ [this]() {
WindowThread foo{ _app.Logic() };
return foo.WindowProc();
} };

one.join();
two.join();
}

0 comments on commit 2c4613a

Please sign in to comment.