TelescopeSt / Telescope

Telescope is an engine for efficiently creating meaningful visualizations
MIT License
31 stars 9 forks source link

First time opening visu does not work #147

Open jecisc opened 5 years ago

jecisc commented 5 years ago

Tested with TelescopeCytoscape.

Executing this:

visu := TLVisualization new.
visu addNodesFromEntities: (1 to: 20).
visu open

does not open any visu the first time.

Then executing this:

visu := TLVisualization new.
visu addNodesFromEntities: (1 to: 20).
visu styleSheet
    width: 40;
    height: 40;
    nodeLabel: #asString.
visu open

will work and after that the first one also work.