fix app_id + app icon

This commit is contained in:
Ferdinand Schober
2024-01-15 08:41:09 +01:00
parent b59808742a
commit 13597b3587
6 changed files with 5 additions and 5 deletions

View File

@@ -46,7 +46,7 @@ fn gtk_main() -> glib::ExitCode {
gio::resources_register_include!("lan-mouse.gresource").expect("Failed to register resources.");
let app = Application::builder()
.application_id("de.feschber.lan-mouse")
.application_id("de.feschber.LanMouse")
.build();
app.connect_startup(|_| load_icons());

View File

@@ -62,7 +62,7 @@ impl Window {
}
fn setup_icon(&self) {
self.set_icon_name(Some("mouse-icon"));
self.set_icon_name(Some("de.feschber.LanMouse"));
}
fn create_client_row(&self, client_object: &ClientObject) -> ClientRow {