pygui: fixed emane config dialog and emane model config dialogs to expand tabs the full height of the dialog

This commit is contained in:
Blake Harnden 2020-08-02 10:47:01 -07:00
parent f0bc3bbc99
commit b7e3d1c877

View file

@ -34,7 +34,6 @@ class GlobalEmaneDialog(Dialog):
)
self.config_frame.draw_config()
self.config_frame.grid(sticky=tk.NSEW, pady=PADY)
self.draw_spacer()
self.draw_buttons()
def draw_buttons(self) -> None:
@ -88,7 +87,6 @@ class EmaneModelDialog(Dialog):
self.config_frame = ConfigFrame(self.top, self.app, self.config, self.enabled)
self.config_frame.draw_config()
self.config_frame.grid(sticky=tk.NSEW, pady=PADY)
self.draw_spacer()
self.draw_buttons()
def draw_buttons(self) -> None: