Browse Source

Bugfix: Highlight all active pools, in pool listing

Luke Dashjr 11 years ago
parent
commit
13b7fd4dda
1 changed files with 1 additions and 1 deletions
  1. 1 1
      miner.c

+ 1 - 1
miner.c

@@ -7235,7 +7235,7 @@ updated:
 			if (pool->prio != j)
 				continue;
 
-			if (pool == current_pool())
+			if (pool_actively_in_use(pool, NULL))
 				wattron(logwin, A_BOLD);
 			if (pool->enabled != POOL_ENABLED || pool->failover_only)
 				wattron(logwin, A_DIM);