🧹 make clippy happy
This commit is contained in:
parent
b948ee4fdb
commit
02189262fe
|
@ -94,15 +94,15 @@ fn show_about_dialog() {
|
||||||
let dialog = gtk::AboutDialog::builder()
|
let dialog = gtk::AboutDialog::builder()
|
||||||
.transient_for(main_window)
|
.transient_for(main_window)
|
||||||
.modal(true)
|
.modal(true)
|
||||||
.program_name(&gettextrs::gettext("CachyOS Hello"))
|
.program_name(gettextrs::gettext("CachyOS Hello"))
|
||||||
.comments(&gettextrs::gettext("Welcome screen for CachyOS"))
|
.comments(gettextrs::gettext("Welcome screen for CachyOS"))
|
||||||
.version(VERSION)
|
.version(VERSION)
|
||||||
.logo(&logo)
|
.logo(&logo)
|
||||||
.authors(vec![
|
.authors(vec![
|
||||||
"Vladislav Nepogodin".to_owned(),
|
"Vladislav Nepogodin".to_owned(),
|
||||||
])
|
])
|
||||||
// Translators: Replace "translator-credits" with your names. Put a comma between.
|
// Translators: Replace "translator-credits" with your names. Put a comma between.
|
||||||
.translator_credits(&gettextrs::gettext("translator-credits"))
|
.translator_credits(gettextrs::gettext("translator-credits"))
|
||||||
.copyright("2021-2023 CachyOS team")
|
.copyright("2021-2023 CachyOS team")
|
||||||
.license_type(gtk::License::Gpl30)
|
.license_type(gtk::License::Gpl30)
|
||||||
.website("https://github.com/cachyos/cachyos-welcome")
|
.website("https://github.com/cachyos/cachyos-welcome")
|
||||||
|
|
Loading…
Reference in New Issue