pygui: added option to hide/show links with 100% loss, added checks to flag links for this case

This commit is contained in:
Blake Harnden 2020-10-13 06:45:37 -07:00
parent fc846272fc
commit 961f630acb
5 changed files with 25 additions and 5 deletions

View file

@ -172,6 +172,11 @@ class Menubar(tk.Menu):
command=self.canvas.show_links.click_handler,
variable=self.canvas.show_links,
)
menu.add_checkbutton(
label="Loss Links",
command=self.canvas.show_loss_links.click_handler,
variable=self.canvas.show_loss_links,
)
menu.add_checkbutton(
label="Wireless Links",
command=self.canvas.show_wireless.click_handler,