Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
sotasan committed Jun 16, 2022
2 parents 66d99a6 + 071de52 commit 5647628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/dev/shota/decompiler/window/Window.kt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object Window : JFrame() {
title = "Decompiler"
defaultCloseOperation = DISPOSE_ON_CLOSE
val icon = ImageIcon(javaClass.classLoader.getResourceAsStream("icons/logo.png")?.readAllBytes()).image
if (Taskbar.getTaskbar().isSupported(Taskbar.Feature.ICON_IMAGE)) Taskbar.getTaskbar().iconImage = icon
if (Taskbar.isTaskbarSupported() && Taskbar.getTaskbar().isSupported(Taskbar.Feature.ICON_IMAGE)) Taskbar.getTaskbar().iconImage = icon
iconImage = icon
jMenuBar = Menu()

Expand Down

0 comments on commit 5647628

Please sign in to comment.