Skip to content

Commit

Permalink
Increase GUI timeout for deadlock checking (this is useful when expor…
Browse files Browse the repository at this point in the history
…ting very high resolution PNGs).
  • Loading branch information
litan committed May 8, 2022
1 parent 32f8d31 commit 0fe6ea2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/net/kogics/kojo/lite/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package net.kogics.kojo.lite
object Versions {
val KojoMajorVersion = "2.9"
val KojoVersion = "2.9.21"
val KojoRevision = "r5"
val KojoBuildDate = "6 May 2022"
val KojoRevision = "r6"
val KojoBuildDate = "8 May 2022"
val JavaVersion = {
val jrv = System.getProperty("java.runtime.version")
val arch = System.getProperty("os.arch")
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/net/kogics/kojo/util/Utils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ object Utils {
lazy val Log = Logger.getLogger("Utils")
lazy val imageCache = new HashMap[String, BufferedImage]
lazy val iconCache = new HashMap[String, ImageIcon]
val GuiTimeout = 10000
val GuiTimeout = 15000

def absolutePath(fname0: String): String = {
def expandHomeDir(fname: String): String =
Expand Down

0 comments on commit 0fe6ea2

Please sign in to comment.