From 81373a536bad938ff954f832ba0c9b876acf260e Mon Sep 17 00:00:00 2001
From: Mario Bodemann <mario.bodemann@gmail.com>
Date: Wed, 20 Sep 2023 16:28:40 +0200
Subject: [PATCH] fix: desktop main class no path

Running the desktop app from commandline did not work, now it does.
---
 zeapp/desktop/build.gradle.kts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zeapp/desktop/build.gradle.kts b/zeapp/desktop/build.gradle.kts
index f8147848..e329c21f 100644
--- a/zeapp/desktop/build.gradle.kts
+++ b/zeapp/desktop/build.gradle.kts
@@ -25,7 +25,7 @@ dependencies {
 
 compose.desktop {
     application {
-        mainClass = "ZeBadgeKompanion"
+        mainClass = "de.berlindroid.zekompanion.desktop.ZeBadgeKompanion"
 
         nativeDistributions {
             targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)