Ignore:
Timestamp:
03/30/13 13:25:49 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Implemented the dialog window (re #190)

File:
1 edited

Legend:

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

    r482 r483  
    1414from mlx.gui.callouts import ApproachCalloutsEditor
    1515from mlx.gui.pirep import PIREPViewer
     16from mlx.gui.bugreport import BugReportDialog
    1617
    1718import mlx.const as const
     
    108109        self._checklistEditor = ChecklistEditor(self)
    109110        self._approachCalloutsEditor = ApproachCalloutsEditor(self)
     111        self._bugreportDialog = BugReportDialog(self)
    110112
    111113        menuBar = self._buildMenuBar(accelGroup)
     
    11391141    def _reportBug(self, menuItem):
    11401142        """Callback for reporting a bug."""
    1141 
     1143        self._bugreportDialog.run()
    11421144
    11431145    def _setupTimeSync(self):
Note: See TracChangeset for help on using the changeset viewer.