mirror of
https://github.com/creating2morrow/neveko.git
synced 2024-12-22 19:49:24 +00:00
add i2p-zero to gui installation manager
This commit is contained in:
parent
6f97ce12b2
commit
e46c829746
1 changed files with 4 additions and 4 deletions
|
@ -218,14 +218,14 @@ impl eframe::App for HomeApp {
|
|||
.vscroll(true)
|
||||
.show(&ctx, |ui| {
|
||||
// let mut wants_i2p = self.installations.i2p;
|
||||
// let mut wants_i2p_zero = self.installations.i2p_zero;
|
||||
let mut wants_i2p_zero = self.installations.i2p_zero;
|
||||
let mut wants_xmr = self.installations.xmr;
|
||||
// if ui.checkbox(&mut wants_i2p, "i2p").changed() {
|
||||
// self.installations.i2p = !self.installations.i2p;
|
||||
// }
|
||||
// if ui.checkbox(&mut wants_i2p_zero, "i2p-zero").changed() {
|
||||
// self.installations.i2p_zero = !self.installations.i2p_zero;
|
||||
// }
|
||||
if ui.checkbox(&mut wants_i2p_zero, "i2p-zero").changed() {
|
||||
self.installations.i2p_zero = !self.installations.i2p_zero;
|
||||
}
|
||||
if ui.checkbox(&mut wants_xmr, "xmr").changed() {
|
||||
self.installations.xmr = !self.installations.xmr;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue