mirror of
https://github.com/processing/processing4.git
synced 2026-02-05 06:39:20 +01:00
X added icon to replace the coffee cup
X see if play being highlighted can be implemented again X especially important because of speed issues
This commit is contained in:
@@ -417,12 +417,18 @@ public class PdeEditorButtons extends Panel /*implements ActionListener*/ {
|
||||
public void run() {
|
||||
if (inactive == null) return;
|
||||
clear();
|
||||
setState(0, ACTIVE, true);
|
||||
//setState(0, ACTIVE, true);
|
||||
setState(RUN, ACTIVE, true);
|
||||
}
|
||||
|
||||
public void running(boolean yesno) {
|
||||
setState(RUN, yesno ? ACTIVE : INACTIVE, true);
|
||||
}
|
||||
|
||||
public void clearRun() {
|
||||
if (inactive == null) return;
|
||||
setState(0, INACTIVE, true);
|
||||
//setState(0, INACTIVE, true);
|
||||
setState(RUN, INACTIVE, true);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user