1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-25 14:04:25 +00:00

Only adjust cursor positions with curses locked.

This commit is contained in:
Con Kolivas 2013-06-03 16:01:20 +10:00
parent 12045aae55
commit 514491bd0e

View File

@ -2186,12 +2186,15 @@ static void check_winsizes(void)
static void switch_compact(void) static void switch_compact(void)
{ {
if (opt_compact) { if (curses_active_locked()) {
logstart = devcursor + 1; if (opt_compact) {
logcursor = logstart + 1; logstart = devcursor + 1;
} else { logcursor = logstart + 1;
logstart = devcursor + total_devices + 1; } else {
logcursor = logstart + 1; logstart = devcursor + total_devices + 1;
logcursor = logstart + 1;
}
unlock_curses();
} }
check_winsizes(); check_winsizes();
} }