mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-04 08:44:40 +01:00
providers: unset websites if none are defined
This commit is contained in:
parent
32a274ec5a
commit
82812d2ed3
1 changed files with 4 additions and 0 deletions
|
@ -176,10 +176,14 @@ impl ProviderPage {
|
|||
|
||||
if let Some(ref website) = provider.website() {
|
||||
imp.provider_website_entry.set_text(website);
|
||||
} else {
|
||||
imp.provider_website_entry.set_text("");
|
||||
}
|
||||
|
||||
if let Some(ref website) = provider.help_url() {
|
||||
imp.provider_help_entry.set_text(website);
|
||||
} else {
|
||||
imp.provider_help_entry.set_text("");
|
||||
}
|
||||
|
||||
imp.algorithm_comborow.set_selected(
|
||||
|
|
Loading…
Add table
Reference in a new issue