Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
Made the windows actually render on new content
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinAlavik authored Feb 27, 2024
1 parent a8b5eab commit e8337d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system/wm/windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ void update_window(window_t *window) {

if (old_window_x[0] != window->x || old_window_y[0] != window->y) {
remove_window_gui(window);
render_window_gui(window);
old_window_x[0] = window->x;
old_window_y[0] = window->y;
}
render_window_gui(window);
}

void update_all_windows() {
Expand Down

0 comments on commit e8337d5

Please sign in to comment.