From e049a97bec5b2bb7d76c944fc4ca482084b6334d Mon Sep 17 00:00:00 2001 From: Vasyl Horbachenko Date: Sat, 13 Oct 2018 22:30:43 +0300 Subject: [PATCH] minor text update --- ui/configurationmenu.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/configurationmenu.py b/ui/configurationmenu.py index f32b00cf..f43fdc36 100644 --- a/ui/configurationmenu.py +++ b/ui/configurationmenu.py @@ -79,14 +79,10 @@ class ConfigurationMenu(Menu): Label(body, text="Takeoff only for player group", **STYLES["widget"]).grid(row=row, column=0, sticky=W) Checkbutton(body, variable=self.takeoff_var, **STYLES["radiobutton"]).grid(row=row, column=1, sticky=E) row += 1 - Label(body, text="Only player group will start on the ground. AI units will be circling in the air until player takes off.", **STYLES["widget"]).grid(row=row, column=0, columnspan=2) - row += 1 Label(body, text="Disable night missions", **STYLES["widget"]).grid(row=row, column=0, sticky=W) Checkbutton(body, variable=self.night_var, **STYLES["radiobutton"]).grid(row=row, column=1, sticky=E) row += 1 - Label(body, text="No night missions. Dawns and dusks will still be present.", **STYLES["widget"]).grid(row=row, column=0, columnspan=2) - row += 1 Button(body, text="Display logs", command=self.display_logs, **STYLES["btn-primary"]).grid(row=row, column=1, sticky=E, pady=30) row += 1