From 8d2362153bad9e38844a95fd2c627e17fe68f38b Mon Sep 17 00:00:00 2001 From: limepotato Date: Sun, 18 Feb 2024 21:45:55 -0700 Subject: [PATCH] Make resizable --- src/main/kotlin/xyz/limepot/kotRemote/Application.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/xyz/limepot/kotRemote/Application.kt b/src/main/kotlin/xyz/limepot/kotRemote/Application.kt index df32d76..0f45855 100644 --- a/src/main/kotlin/xyz/limepot/kotRemote/Application.kt +++ b/src/main/kotlin/xyz/limepot/kotRemote/Application.kt @@ -55,7 +55,8 @@ val backendType = class Application : TApplication(backendType, 60, 30, 16) { init { this.screen.setTitle("kotRemote") - this.theme.load(Config().confDir.configDir + "/catppuccin.theme") + this.desktop.isResizable + //this.theme.load("/assets/catppuccin.theme") WelcomeWindow(this) } -} \ No newline at end of file +}