mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-07 03:06:29 +00:00
Forcing white background is now optional
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.gui;
|
||||
|
||||
import com.jpexs.decompiler.flash.configuration.Configuration;
|
||||
import com.jpexs.decompiler.flash.gui.debugger.DebugListener;
|
||||
import com.jpexs.decompiler.flash.gui.debugger.Debugger;
|
||||
import java.awt.BorderLayout;
|
||||
@@ -47,7 +48,9 @@ public class DebugLogDialog extends AppDialog {
|
||||
setSize(800, 600);
|
||||
this.debug = debug;
|
||||
setTitle(translate("dialog.title"));
|
||||
logTextArea.setBackground(Color.white);
|
||||
if (Configuration.setControlsBackgroundToWhite.get()) {
|
||||
logTextArea.setBackground(Color.white);
|
||||
}
|
||||
logTextArea.setEditable(false);
|
||||
JScrollPane spane = new FasterScrollPane(logTextArea);
|
||||
spane.setPreferredSize(new Dimension(800, 500));
|
||||
|
||||
Reference in New Issue
Block a user