create a rough layout for throughput config dialog

This commit is contained in:
Huy Pham 2019-12-20 11:56:51 -08:00
parent 086e3316eb
commit e4b44d08c1
3 changed files with 106 additions and 1 deletions

View file

@ -435,7 +435,9 @@ class Menubar(tk.Menu):
menu.add_checkbutton(label="Throughput", command=self.menuaction.throughput)
menu.add_separator()
menu.add_command(label="Configure Adjacency...", state=tk.DISABLED)
menu.add_command(label="Configure Throughput...", state=tk.DISABLED)
menu.add_command(
label="Configure Throughput...", command=self.menuaction.config_throughput
)
self.add_cascade(label="Widgets", menu=menu)
def draw_session_menu(self):