1
0
mirror of https://github.com/CTCaer/hekate.git synced 2024-10-03 05:02:04 +00:00

nyx: Fix verification bar/percent not updating

This commit is contained in:
CTCaer 2020-04-30 15:13:12 +03:00
parent 1ba0a7d264
commit 91c2c891fd

View File

@ -295,6 +295,7 @@ static int _dump_emmc_verify(emmc_tool_gui_t *gui, sdmmc_storage_t *storage, u32
lv_bar_set_value(gui->bar, pct); lv_bar_set_value(gui->bar, pct);
s_printf(gui->txt_buf, " "SYMBOL_DOT" %d%%", pct); s_printf(gui->txt_buf, " "SYMBOL_DOT" %d%%", pct);
lv_label_set_text(gui->label_pct, gui->txt_buf); lv_label_set_text(gui->label_pct, gui->txt_buf);
manual_system_maintenance(true);
prevPct = pct; prevPct = pct;
} }