pygui removed unused throughput tag

This commit is contained in:
Blake Harnden 2020-04-15 12:57:01 -07:00
parent 6f87986364
commit 0203d4178d
2 changed files with 0 additions and 2 deletions

View file

@ -289,7 +289,6 @@ class CanvasEdge(Edge):
throughput = 0.001 * throughput
text = f"{throughput:.3f} kbps"
self.middle_label_text(text)
self.canvas.addtag(self.middle_label, tags.THROUGHPUT)
if throughput > self.canvas.throughput_threshold:
color = self.canvas.throughput_color
width = self.canvas.throughput_width

View file

@ -9,7 +9,6 @@ NODE_NAME = "nodename"
NODE = "node"
WALLPAPER = "wallpaper"
SELECTION = "selectednodes"
THROUGHPUT = "throughput"
MARKER = "marker"
ABOVE_WALLPAPER_TAGS = [
GRIDLINE,