Skip to content

Commit

Permalink
bug: mouse/graph defaults reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
computermacgyver committed Nov 6, 2012
1 parent 236cd0e commit cb43fcd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ public void setDefaults() {
map = new HashMap<String,Object>();
map.put("minRatio", 0.75);
map.put("maxRatio", 20);
sigma.put("graphProperties", map);
sigma.put("mouseProperties", map);

map = new HashMap<String,Object>();
map.put("minNodeSize", 1);
map.put("maxNodeSize", 7);
map.put("minEdgeSize", 0.2);
map.put("maxEdgeSize", 0.5);
sigma.put("mouseProperties", map);
sigma.put("graphProperties", map);



Expand Down

0 comments on commit cb43fcd

Please sign in to comment.