mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
uniblock: fixed-width progress bar to better show off smooth fill #1209
This commit is contained in:
parent
5036e655cb
commit
ee9ed23e04
@ -32,7 +32,7 @@ pbar_make(struct notcurses* nc, int row){
|
||||
.y = row < 0 ? 4 : row,
|
||||
.x = row < 0 ? 1 : NCALIGN_CENTER,
|
||||
.rows = row < 0 ? dimy - 5 : 1,
|
||||
.cols = row < 0 ? 1 : dimx - 20,
|
||||
.cols = row < 0 ? 1 : 20,
|
||||
.name = "pbar",
|
||||
.flags = row < 0 ? 0 : NCPLANE_OPTION_HORALIGNED,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user