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:
benfry
2002-08-02 16:27:14 +00:00
parent fbf187e1ac
commit eae67bdb9b
6 changed files with 75 additions and 17 deletions

View File

@@ -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);
}
/*