Skip to content

Commit

Permalink
Implement workaround missing resize calls
Browse files Browse the repository at this point in the history
  • Loading branch information
brummer10 committed Jan 14, 2024
1 parent d4dbc19 commit 3b05c9c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Fluida/fluida_ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,8 @@ void notify_dsp(X11_UI *ui) {

void first_loop(X11_UI *ui) {
notify_dsp(ui);
if (ui->win->width != 590 || ui->win->height != 383)
os_resize_window(ui->win->app->dpy, ui->win, ui->win->width-1, ui->win->height);
}

void set_active_instrument(X11_UI *ui, int a) {
Expand Down

0 comments on commit 3b05c9c

Please sign in to comment.