disable auto update, Tab XvB as default

This commit is contained in:
Cyrix126 2024-03-24 14:26:18 +01:00
parent ad40f6086e
commit d0ba5d161e

View file

@ -273,10 +273,10 @@ impl Default for Gupax {
fn default() -> Self {
Self {
simple: true,
auto_update: true,
auto_update: false,
auto_p2pool: false,
auto_xmrig: false,
auto_xvb: true,
auto_xvb: false,
ask_before_quit: true,
save_before_quit: true,
p2pool_path: DEFAULT_P2POOL_PATH.to_string(),
@ -287,7 +287,7 @@ impl Default for Gupax {
selected_height: APP_DEFAULT_HEIGHT as u16,
selected_scale: APP_DEFAULT_SCALE,
ratio: Ratio::Width,
tab: Tab::About,
tab: Tab::Xvb,
}
}
}