Changeset 390:7378fc230e10 for src/mlx/gui
- Timestamp:
- 12/22/12 06:43:00 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/monitor.py
r367 r390 59 59 60 60 self._onTheGround = gtk.Label("ONTHEGROUND") 61 table.attach(self._onTheGround, 10, 12, 0, 1) 61 table.attach(self._onTheGround, 10, 11, 0, 1) 62 63 self._antiIceOn = gtk.Label("ANTI-ICE") 64 table.attach(self._antiIceOn, 11, 12, 0, 1) 62 65 63 66 (label, self._zfw) = self._createLabeledEntry("ZFW:", 6) … … 259 262 self._stalled.set_sensitive(False) 260 263 self._onTheGround.set_sensitive(False) 264 self._antiIceOn.set_sensitive(False) 261 265 self._zfw.set_text("-") 262 266 self._grossWeight.set_text("-") … … 311 315 self._stalled.set_sensitive(aircraftState.stalled) 312 316 self._onTheGround.set_sensitive(aircraftState.onTheGround) 317 self._antiIceOn.set_sensitive(aircraftState.antiIceOn) 313 318 self._zfw.set_text("%.0f" % (aircraftState.zfw,)) 314 319 self._grossWeight.set_text("%.0f" % (aircraftState.grossWeight,))
Note:
See TracChangeset
for help on using the changeset viewer.