1
0
Fork 0
mirror of https://github.com/otakuto/crazydiskinfo.git synced 2025-08-07 06:33:17 +00:00

Merge pull request #4 from BlueSkyDetector/PR-clear_window_for_removing_remaining_color

Clear window for removing remaining color
This commit is contained in:
otakuto 2017-01-25 21:51:38 +00:00 committed by GitHub
commit 2fb109dd67

View file

@ -456,8 +456,11 @@ int main()
update = [&]()
{
getmaxyx(stdscr, height, width);
wclear(windowVersion);
drawVersion(windowVersion);
wclear(windowDeviceBar);
drawDeviceBar(windowDeviceBar, smartList, select);
wclear(windowDeviceStatus);
drawStatus(windowDeviceStatus, smartList[select]);
doupdate();
};