Changeset 90:0b3fb188dc92 for src/mlx
- Timestamp:
- 04/18/12 18:03:55 (13 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx/gui
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/gui.py
r88 r90 3 3 from statusicon import StatusIcon 4 4 from statusbar import Statusbar 5 from info import FlightInfo 5 6 from update import Updater 6 7 from mlx.gui.common import * … … 63 64 64 65 self._wizard = Wizard(self) 65 label = gtk.Label(" _Flight")66 label = gtk.Label("Fligh_t") 66 67 label.set_use_underline(True) 67 68 label.set_tooltip_text("Flight wizard") 68 69 notebook.append_page(self._wizard, label) 70 71 self._flightInfo = FlightInfo(self) 72 label = gtk.Label("Flight _info") 73 label.set_use_underline(True) 74 label.set_tooltip_text("Flight information") 75 notebook.append_page(self._flightInfo, label) 69 76 70 77 logVBox = gtk.VBox() … … 200 207 self._statusbar.updateConnection(self._connecting, self._connected) 201 208 self._wizard.connectionFailed() 209 self._flightInfo.reset() 202 210 203 211 def disconnected(self): … … 237 245 self._statusbar.updateConnection(self._connecting, self._connected) 238 246 self._wizard.disconnected() 247 self._flightInfo.reset() 239 248 240 249 def write(self, msg):
Note:
See TracChangeset
for help on using the changeset viewer.