Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--abacus_window.py6
2 files changed, 10 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 696e5b5..48745e3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+7
+
+* added missing type to rods
+
6
* added binary abacus
diff --git a/abacus_window.py b/abacus_window.py
index 6507933..88038e3 100644
--- a/abacus_window.py
+++ b/abacus_window.py
@@ -316,6 +316,8 @@ class AbacusGeneric():
*self.abacus.scale,
self.colors[0]))
+ for r in self.rods:
+ r.type = "frame"
for i in self.beads:
i.type = 'bead'
i.state = 0
@@ -680,6 +682,8 @@ class Schety(AbacusGeneric):
y+(2+b)*BHEIGHT*self.abacus.scale,
color))
+ for r in self.rods:
+ r.type = "frame"
for i in self.beads:
i.type = 'bead'
i.state = 0
@@ -856,6 +860,8 @@ class Fractions(AbacusGeneric):
self.abacus.scale,
self.white))
+ for r in self.rods:
+ r.type = "frame"
for i in self.beads:
i.type = 'bead'
i.state = 0