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: