From b5545e1bae25b3345741b2948cc6903465923f32 Mon Sep 17 00:00:00 2001 From: CodeSteak Date: Wed, 12 Jun 2019 19:07:29 +0200 Subject: [PATCH] fix icon path: use png for alpha-channel --- client/src/main/kotlin/org/hso/texturesyncclient/app/Main.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main/kotlin/org/hso/texturesyncclient/app/Main.kt b/client/src/main/kotlin/org/hso/texturesyncclient/app/Main.kt index 3ff109d..b92fc30 100644 --- a/client/src/main/kotlin/org/hso/texturesyncclient/app/Main.kt +++ b/client/src/main/kotlin/org/hso/texturesyncclient/app/Main.kt @@ -18,7 +18,7 @@ class Main : App(StartupView::class) { stage.width = 1008.00 stage.height = 535.00 stage.isResizable = true - stage.icons.add(Image("icons/TextureSync_Icon_256x256.jpeg")) + stage.icons.add(Image("icons/TextureSync_Icon_256x256.png")) stage.setOnCloseRequest { System.exit(0) } super.start(stage)