From 54488b1cfc15f900aafe40ecd6ae649b3b47a183 Mon Sep 17 00:00:00 2001 From: vrackfall Date: Sat, 6 Jan 2018 17:24:07 -0500 Subject: [PATCH] Update BytecodeViewer.java Remove Windows 7 UI on Windows 10 --- .../java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java index aff22a65..0cf961d5 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java @@ -152,6 +152,7 @@ public class BytecodeViewer { public static void main(String[] args) { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); + SwingUtilities.updateComponentTreeUI(this); } catch (Exception e) { new ExceptionUI(e); }