changeset 7:9c3e2d2efaa8

Add my copyright in the about dialog.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 01 Nov 2020 14:44:30 +0100
parents dd10331549c6
children 51a6c86d3141
files src/main.rs
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main.rs
+++ b/src/main.rs
@@ -231,7 +231,7 @@ fn build_ui(application: &gtk::Applicati
         about.set_website(Some("https://hg.linkmauve.fr/tablet-emu"));
         about.set_version(Some("0.1"));
         about.set_license_type(gtk::License::Agpl30);
-        about.set_program_name("TabletEmu");
+        about.set_copyright(Some("© 2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>"));
         about.run();
         unsafe { about.destroy(); }
     });