Changeset 483:a1b49fbab4f0 for src/mlx/gui
- Timestamp:
- 03/30/13 13:25:49 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx/gui
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/gui.py
r482 r483 14 14 from mlx.gui.callouts import ApproachCalloutsEditor 15 15 from mlx.gui.pirep import PIREPViewer 16 from mlx.gui.bugreport import BugReportDialog 16 17 17 18 import mlx.const as const … … 108 109 self._checklistEditor = ChecklistEditor(self) 109 110 self._approachCalloutsEditor = ApproachCalloutsEditor(self) 111 self._bugreportDialog = BugReportDialog(self) 110 112 111 113 menuBar = self._buildMenuBar(accelGroup) … … 1139 1141 def _reportBug(self, menuItem): 1140 1142 """Callback for reporting a bug.""" 1141 1143 self._bugreportDialog.run() 1142 1144 1143 1145 def _setupTimeSync(self):
Note:
See TracChangeset
for help on using the changeset viewer.