|
|
@@ -2677,6 +2677,14 @@ void clear_logwin(void)
|
|
|
unlock_curses();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+void logwin_update(void)
|
|
|
+{
|
|
|
+ if (curses_active_locked()) {
|
|
|
+ touchwin(logwin);
|
|
|
+ wrefresh(logwin);
|
|
|
+ }
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
static void enable_pool(struct pool *pool)
|
|
|
@@ -5372,6 +5380,7 @@ retry:
|
|
|
wlogprint("[A]dd pool [R]emove pool [D]isable pool [E]nable pool [P]rioritize pool\n");
|
|
|
wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
|
|
|
wlogprint("Or press any other key to continue\n");
|
|
|
+ logwin_update();
|
|
|
input = getch();
|
|
|
|
|
|
if (!strncasecmp(&input, "a", 1)) {
|
|
|
@@ -5524,6 +5533,7 @@ retry:
|
|
|
summary_detail_level_str(),
|
|
|
opt_log_interval);
|
|
|
wlogprint("Select an option or any other key to return\n");
|
|
|
+ logwin_update();
|
|
|
input = getch();
|
|
|
if (!strncasecmp(&input, "q", 1)) {
|
|
|
opt_quiet ^= true;
|
|
|
@@ -5641,6 +5651,7 @@ retry:
|
|
|
"[W]rite config file\n[B]FGMiner restart\n",
|
|
|
opt_queue, opt_scantime, opt_expiry, opt_retries);
|
|
|
wlogprint("Select an option or any other key to return\n");
|
|
|
+ logwin_update();
|
|
|
input = getch();
|
|
|
|
|
|
if (!strncasecmp(&input, "q", 1)) {
|