Skip to content

Commit

Permalink
jvm: remove backgroundColor from JvmConfiguration (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeHaine authored Jul 1, 2024
1 parent e49a950 commit 226ab65
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions core/src/jvmMain/kotlin/com/littlekt/LittleKtApp.jvm.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.littlekt

import com.littlekt.graphics.Color
import com.littlekt.graphics.HdpiMode
import com.littlekt.graphics.webgpu.Backend

Expand All @@ -16,7 +15,6 @@ actual class LittleKtProps {
var height: Int = 540
var title: String = "LitteKt"
var icons: List<String> = listOf()
var backgroundColor = Color.CLEAR
var resizeable = true
var maximized = false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ private fun createApp(title: String, start: (Context) -> ContextListener) =
createLittleKtApp {
width = 960
height = 540
vSync = true
this.title = title
backgroundColor = Color.DARK_GRAY
traceWgpu = false
Expand Down

0 comments on commit 226ab65

Please sign in to comment.