~menulibre-dev/menulibre/2.1

« back to all changes in this revision

Viewing changes to menulibre/MenulibreApplication.py

  • Committer: Sean Davis
  • Date: 2015-07-31 01:30:26 UTC
  • Revision ID: smd.seandavis@gmail.com-20150731013026-6ol5xpo9s4824wyg
Ctrl-Q to quit

Show diffs side-by-side

added added

removed removed

Lines of Context:
823
823
        if check_keypress(event, ['Control', 's']):
824
824
            self.actions['save_launcher'].activate()
825
825
            return True
 
826
        # Ctrl-Q (Quit)
 
827
        if check_keypress(event, ['Control', 'q']):
 
828
            self.actions['quit'].activate()
 
829
            return True
826
830
        return False
827
831
 
828
832
    def on_window_delete_event(self, widget, event):