Forcing white background is now optional

This commit is contained in:
Jindra Petřík
2021-11-19 13:03:23 +01:00
parent d8512aa6d9
commit 8890a327da
18 changed files with 130 additions and 56 deletions
@@ -308,7 +308,9 @@ public class LoadFromMemoryFrame extends AppFrame {
}
}
if (!isSelected) {
label.setBackground(Color.white);
if (Configuration.setControlsBackgroundToWhite.get()) {
label.setBackground(Color.white);
}
}
return label;
}