Make "all" the default flight path display option.

This commit is contained in:
Dan Albert 2020-10-10 12:43:51 -07:00
parent f4b07cb518
commit b0a176a22c

View File

@ -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: