mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 22:59:27 +00:00
status: fix p2pool stats overflow
Use all available height so `P2Pool` stats don't overflow
This commit is contained in:
parent
7b56a7b900
commit
a4eba8a77f
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ pub fn show(&mut self, sys: &Arc<Mutex<Sys>>, p2pool_api: &Arc<Mutex<PubP2poolAp
|
|||
//---------------------------------------------------------------------------------------------------- [Processes]
|
||||
if self.submenu == Submenu::Processes {
|
||||
let width = (width/3.0)-(SPACE*1.666);
|
||||
let min_height = height/1.1;
|
||||
let min_height = height - SPACE;
|
||||
let height = height/25.0;
|
||||
ui.horizontal(|ui| {
|
||||
// [Gupax]
|
||||
|
|
Loading…
Reference in a new issue