(self, event)
| 625 | self.RConfigure("regedit") |
| 626 | |
| 627 | def run_plugin(self, event): |
| 628 | game_exec = self.GetSelectedProgram() |
| 629 | plugin = self.plugin_list[event.GetId() - 300] |
| 630 | try: |
| 631 | subprocess.Popen(["bash", Variables.playonlinux_rep + "/plugins/" + plugin + "/scripts/menu", game_exec]) |
| 632 | except: |
| 633 | pass |
| 634 | |
| 635 | def runSupport(self, event): |
| 636 | urlId = event.GetId() - 400 |
nothing calls this directly
no test coverage detected