mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 14:49:21 +00:00
status: fix scrollbar visibility
This commit is contained in:
parent
1c831712af
commit
e95a85dbd0
1 changed files with 6 additions and 1 deletions
|
@ -327,7 +327,12 @@ pub fn show(&mut self, sys: &Arc<Mutex<Sys>>, p2pool_api: &Arc<Mutex<PubP2poolAp
|
||||||
ui.add_sized([width, text], Hyperlink::from_label_and_url("Other CPUs", "https://xmrig.com/benchmark")).on_hover_text(STATUS_SUBMENU_OTHER_CPUS);
|
ui.add_sized([width, text], Hyperlink::from_label_and_url("Other CPUs", "https://xmrig.com/benchmark")).on_hover_text(STATUS_SUBMENU_OTHER_CPUS);
|
||||||
});
|
});
|
||||||
|
|
||||||
egui::ScrollArea::both().always_show_scroll(true).max_width(width).max_height(height).auto_shrink([false; 2]).show_viewport(ui, |ui, _| {
|
egui::ScrollArea::both()
|
||||||
|
.scroll_bar_visibility(egui::containers::scroll_area::ScrollBarVisibility::AlwaysVisible)
|
||||||
|
.max_width(width)
|
||||||
|
.max_height(height)
|
||||||
|
.auto_shrink([false; 2])
|
||||||
|
.show_viewport(ui, |ui, _| {
|
||||||
let width = width / 20.0;
|
let width = width / 20.0;
|
||||||
let (cpu, bar, high, average, low, rank, bench) = (
|
let (cpu, bar, high, average, low, rank, bench) = (
|
||||||
width*10.0,
|
width*10.0,
|
||||||
|
|
Loading…
Reference in a new issue