Re: Issue 2299 in pharo: Do not hardcode the color for Workspaces from UIManager

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Re: Issue 2299 in pharo: Do not hardcode the color for Workspaces from UIManager

pharo
Updates:
        Status: Invalid

Comment #4 on issue 2299 by [hidden email]: Do not hardcode the  
color for Workspaces from UIManager
http://code.google.com/p/pharo/issues/detail?id=2299

This is already changed to be much simpler:

edit: aText label: labelString accept: anAction
        "Open an editor on the given string/text"

        ^(Workspace openLabel: labelString)
                acceptContents:  aText;
                acceptAction: anAction;
                yourself.