Revert "tui: update_size(): Fix race condition."

This reverts commit 0e75438a38.
This commit is contained in:
Justin M. Keyes 2017-02-04 03:25:36 +01:00
parent 5ef619eb33
commit 4b7d3aec04

View File

@ -763,8 +763,8 @@ end:
height = DFLT_ROWS;
}
data->bridge->bridge.width = width;
data->bridge->bridge.height = height;
data->bridge->bridge.width = ui->width = width;
data->bridge->bridge.height = ui->height = height;
}
static void unibi_goto(UI *ui, int row, int col)