Skip to content

Commit

Permalink
actually sync things
Browse files Browse the repository at this point in the history
  • Loading branch information
Speak2Erase committed Aug 15, 2024
1 parent bd71d78 commit b7600ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binding/osfm-screen-binding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ RB_METHOD(monitorWindowShow) {

GUARD_DISPOSED(window);

SDL_ShowWindow(window->window);
shState->eThread().requestWindowVisible(window->window, true);

return Qnil;
}
Expand All @@ -457,7 +457,7 @@ RB_METHOD(monitorWindowHide) {

GUARD_DISPOSED(window);

SDL_HideWindow(window->window);
shState->eThread().requestWindowVisible(window->window, false);

return Qnil;
}
Expand Down

0 comments on commit b7600ff

Please sign in to comment.