mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
update tooltips text
This commit is contained in:
parent
16c8c2c0d4
commit
1bfa82ff56
1 changed files with 3 additions and 3 deletions
|
|
@ -138,7 +138,7 @@ pub fn new(on_add: impl Fn() + 'static) -> Box {
|
||||||
.css_classes(["success"])
|
.css_classes(["success"])
|
||||||
.hexpand(true)
|
.hexpand(true)
|
||||||
.icon_name("list-add-symbolic")
|
.icon_name("list-add-symbolic")
|
||||||
.tooltip_text("Add hostname or IP exception")
|
.tooltip_text("Add hostname or IP address exception")
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
add.connect_clicked(move |_| on_add());
|
add.connect_clicked(move |_| on_add());
|
||||||
|
|
@ -167,12 +167,12 @@ fn validate(host: &Entry) -> bool {
|
||||||
Ok(address) => {
|
Ok(address) => {
|
||||||
use gtk::prelude::NetworkAddressExt;
|
use gtk::prelude::NetworkAddressExt;
|
||||||
if address.hostname() != value {
|
if address.hostname() != value {
|
||||||
Err("Hostname or IP could not be parsed properly".to_string())
|
Err("Hostname or IP address could not be parsed properly".to_string())
|
||||||
} else {
|
} else {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => Err(format!("Valid hostname or IP is required: `{e}`")),
|
Err(e) => Err(format!("Valid hostname or IP address is required: `{e}`")),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue