Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/config.py

    r503 r486  
    236236        self._pirepAutoSave = False
    237237
    238         self._defaultMSFS = os.name=="nt"
    239 
    240238        self._enableSounds = not secondaryInstallation
    241239
     
    473471        if pirepAutoSave!=self._pirepAutoSave:
    474472            self._pirepAutoSave = pirepAutoSave
    475             self._modified = True
    476 
    477     @property
    478     def defaultMSFS(self):
    479         """Get if the default simulator type is MS FS."""
    480         return self._defaultMSFS
    481 
    482     @defaultMSFS.setter
    483     def defaultMSFS(self, defaultMSFS):
    484         """Set if the default simulator type is MS FS."""
    485         if defaultMSFS!=self._defaultMSFS:
    486             self._defaultMSFS = defaultMSFS
    487473            self._modified = True
    488474
     
    718704                ApproachCallouts.fromConfig(config, aircraftType)
    719705
    720         self._defaultMSFS = self._getBoolean(config, "general",
    721                                              "defaultMSFS", os.name=="nt")
    722 
    723706        self._modified = False
    724707
     
    763746                   "yes" if self._pirepAutoSave else "no")
    764747
    765         config.set("general", "defaultMSFS",
    766                    "yes" if self._defaultMSFS else "no")
    767 
    768748        config.add_section(Config._messageTypesSection)
    769749        for messageType in const.messageTypes:
     
    910890        print "  pirepAutoSave:", self._pirepAutoSave
    911891
    912         print "  defaultMSFS:", self._defaultMSFS
    913 
    914892        print "  enableSounds:", self._enableSounds
    915893
Note: See TracChangeset for help on using the changeset viewer.