mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 17:40:48 +01:00
fixes editor header stuff, also 1.4-only prefs line, plus Info.plist
This commit is contained in:
@@ -296,14 +296,14 @@ public class PdePreferences extends JComponent {
|
||||
pain.add(textarea);
|
||||
*/
|
||||
label = new JLabel("More preferences can be edited directly in the file");
|
||||
label.setForeground(Color.GRAY);
|
||||
label.setForeground(Color.gray);
|
||||
pain.add(label);
|
||||
d = label.getPreferredSize();
|
||||
label.setBounds(left, top, d.width, d.height);
|
||||
top += d.height; // + GUI_SMALL;
|
||||
|
||||
label = new JLabel(preferencesFile.getAbsolutePath());
|
||||
label.setForeground(Color.GRAY);
|
||||
label.setForeground(Color.gray);
|
||||
pain.add(label);
|
||||
d = label.getPreferredSize();
|
||||
label.setBounds(left, top, d.width, d.height);
|
||||
|
||||
Reference in New Issue
Block a user