diff --git a/ui/overviewcanvas.py b/ui/overviewcanvas.py index 15efda25..6337cbf7 100644 --- a/ui/overviewcanvas.py +++ b/ui/overviewcanvas.py @@ -82,7 +82,17 @@ class OverviewCanvas: self.draw() col = 0 - Label(self.options, text="Ground targets", **STYLES["widget"]).grid(row=0, column=col, sticky=W) + Label(self.options, text="Bases", **STYLES["widget"]).grid(row=0, column=col, sticky=W) + Checkbutton(self.options, variable=self.display_bases, **STYLES["radiobutton"]).grid(row=0, column=col + 1, + sticky=E) + Separator(self.options, orient=VERTICAL).grid(row=0, column=col + 2, sticky=NS) + col += 3 + Label(self.options, text="Roads", **STYLES["widget"]).grid(row=0, column=col, sticky=W) + Checkbutton(self.options, variable=self.display_road, **STYLES["radiobutton"]).grid(row=0, column=col + 1, + sticky=E) + Separator(self.options, orient=VERTICAL).grid(row=0, column=col + 2, sticky=NS) + col += 3 + Label(self.options, text="Strike targets", **STYLES["widget"]).grid(row=0, column=col, sticky=W) Checkbutton(self.options, variable=self.display_ground_targets, **STYLES["radiobutton"]).grid(row=0, column=col + 1, sticky=E) Separator(self.options, orient=VERTICAL).grid(row=0, column=col + 2, sticky=NS) @@ -91,16 +101,6 @@ class OverviewCanvas: Checkbutton(self.options, variable=self.display_forces, **STYLES["radiobutton"]).grid(row=0, column=col + 1, sticky=E) Separator(self.options, orient=VERTICAL).grid(row=0, column=col + 2, sticky=NS) - col += 3 - Label(self.options, text="Bases", **STYLES["widget"]).grid(row=0, column=col, sticky=W) - Checkbutton(self.options, variable=self.display_bases, **STYLES["radiobutton"]).grid(row=0, column=col + 1, - sticky=E) - Separator(self.options, orient=VERTICAL).grid(row=0, column=col + 2, sticky=NS) - col += 4 - Label(self.options, text="Roads", **STYLES["widget"]).grid(row=0, column=col, sticky=W) - Checkbutton(self.options, variable=self.display_road, **STYLES["radiobutton"]).grid(row=0, column=col + 1, - sticky=E) - Separator(self.options, orient=VERTICAL).grid(row=0, column=col + 2, sticky=NS) col += 4 Label(self.options, text="[ Use mouse wheel to zoom, right mouse click + move to pan the map view, click on one of your base to manage it ]",