mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 14:30:47 +00:00
Forcing white background is now optional
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.gui.dumpview;
|
||||
|
||||
import com.jpexs.decompiler.flash.configuration.Configuration;
|
||||
import com.jpexs.decompiler.flash.dumpview.DumpInfo;
|
||||
import com.jpexs.decompiler.flash.dumpview.DumpInfoSwfNode;
|
||||
import com.jpexs.decompiler.flash.gui.FasterScrollPane;
|
||||
@@ -208,7 +209,9 @@ public class DumpViewPanel extends JPanel {
|
||||
}
|
||||
|
||||
private void doSearch() {
|
||||
filterField.setBackground(Color.white);
|
||||
if (Configuration.setControlsBackgroundToWhite.get()) {
|
||||
filterField.setBackground(Color.white);
|
||||
}
|
||||
|
||||
String text = filterField.getText();
|
||||
if (text.length() == 0) {
|
||||
|
||||
Reference in New Issue
Block a user