Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/gui.py

    r652 r620  
    1515from mlx.gui.pirep import PIREPViewer
    1616from mlx.gui.bugreport import BugReportDialog
    17 from mlx.gui.acars import ACARS
    18 import cef
    1917
    2018import mlx.const as const
     
    104102        window.connect("delete-event", self.deleteMainWindow)
    105103        window.connect("window-state-event", self._handleMainWindowState)
    106         if os.name=="nt":
    107             window.connect("leave-notify-event", self._handleLeaveNotify)
    108104        accelGroup = gtk.AccelGroup()
    109105        window.add_accel_group(accelGroup)
    110         window.realize()
    111106
    112107        mainVBox = gtk.VBox()
     
    156151        self._notebook.append_page(self._fleetGateStatus, label)
    157152
    158         self._acars = ACARS(self)
    159         label = gtk.Label("ACARS")
    160         label.set_use_underline(True)
    161         self._notebook.append_page(self._acars, label)
    162 
    163153        (self._debugLogWidget, self._debugLogView) = self._buildLogWidget()
    164154        self._debugLogWidget.show_all()
     
    180170
    181171        window.show_all()
    182         if os.name=="nt":
    183             window.get_window().focus()
    184172
    185173        self._wizard.grabDefault()
     
    439427            self._updater = Updater(self,
    440428                                    self._programDirectory,
    441                                     self.config.DEFAULT_UPDATE_URL,
     429                                    self.config.updateURL,
    442430                                    self._mainWindow)
    443431            self._updater.start()
    444 
    445         cef.initialize()
    446         self._acars.start()
    447432
    448433        singleton.raiseCallback = self.raiseCallback
    449434        gtk.main()
    450435        singleton.raiseCallback = None
    451 
    452         cef.finalize()
    453436
    454437        self._disconnect()
     
    704687             (event.new_window_state&WINDOW_STATE_ICONIFIED)==0:
    705688            self._mainWindow.present()
    706 
    707     def _handleLeaveNotify(self, widget, event):
    708         """Handle the leave-notify event.
    709 
    710         Here we reset the focus to the main window as CEF might have acquired
    711         it earlier."""
    712         self._mainWindow.get_window().focus()
    713689
    714690    def raiseCallback(self):
Note: See TracChangeset for help on using the changeset viewer.