alandmoore / admbrowser

A Web browser for kiosks and digital signage, based on Python, PyQt, and Blink
35 stars 22 forks source link

quit shortcut #29

Open axlroden opened 7 months ago

axlroden commented 7 months ago
if not hasattr(self, 'really_quit'): 
    # set hidden quit action
    self.really_quit = self.createAction(
        "",
        self.close,
        qtg.QKeySequence("Ctrl+Alt+Q"),
        None,
        ""
    )

Should solve your Ambiguos shortcut issue..