TelescopeSt / Telescope

Telescope is an engine for efficiently creating meaningful visualizations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

First time opening visu does not work

jecisc opened this issue · comments

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.