From b0a176a22cc750d2478450994048e7eaca366d3a Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sat, 10 Oct 2020 12:43:51 -0700 Subject: [PATCH] Make "all" the default flight path display option. --- qt_ui/displayoptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt_ui/displayoptions.py b/qt_ui/displayoptions.py index f6f2e6c6..020c2b02 100644 --- a/qt_ui/displayoptions.py +++ b/qt_ui/displayoptions.py @@ -41,9 +41,9 @@ class DisplayGroup: class FlightPathOptions(DisplayGroup): def __init__(self) -> None: super().__init__("Flight Paths") - self.hide = DisplayRule("Hide Flight Paths", True) + self.hide = DisplayRule("Hide Flight Paths", False) self.only_selected = DisplayRule("Show Selected Flight Path", False) - self.all = DisplayRule("Show All Flight Paths", False) + self.all = DisplayRule("Show All Flight Paths", True) class DisplayOptions: