This commit is contained in:
rusefi 2019-03-17 18:11:14 -04:00
parent 0a19060c94
commit 4f81f34614
1 changed files with 4 additions and 1 deletions

View File

@ -113,7 +113,10 @@ public class SettingsTab {
panel.add(UiUtils.wrap(RecentCommands.createButton(new AtomicBoolean(), WRITECONFIG)));
content.add(panel);
JLabel unusable = new JLabel("This is painfully unusable, TunerStudio works way better for settings!");
unusable.setForeground(Color.red);
content.add(unusable, BorderLayout.NORTH);
content.add(panel, BorderLayout.CENTER);
UiUtils.trueLayout(content);
}