mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
X modified pde.properties slightly for console and header
X need stdout in p5 window b/c mac has no stdout X remove class 'PdeEditorOutput' and 'PdeEditorLabel'(?) X added editor.console.lines to pde.properties X int() and float() now work for casting X draw mode needs to be better for workshops X make size() work for draw() mode X inside Engine, reach in and grab calls to 'size' X if call is not using a constant number, then punt X when exporting, needs to grab this size parameter as well
This commit is contained in:
@@ -53,9 +53,9 @@ public class PdeEditorHeader extends Panel /* implements ActionListener*/ {
|
||||
if (primaryColor == null) {
|
||||
backgroundColor = PdeApplet.getColor("editor.header.bgcolor",
|
||||
new Color(51, 51, 51));
|
||||
primaryColor = PdeApplet.getColor("editor.header.fgcolor1",
|
||||
primaryColor = PdeApplet.getColor("editor.header.fgcolor.primary",
|
||||
new Color(255, 255, 255));
|
||||
secondaryColor = PdeApplet.getColor("editor.header.fgcolor2",
|
||||
secondaryColor = PdeApplet.getColor("editor.header.fgcolor.secondary",
|
||||
new Color(153, 153, 153));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user