(self, event)
| 615 | self.RConfigure("kprocess") |
| 616 | |
| 617 | def ReadMe(self, event): |
| 618 | game_exec = self.GetSelectedProgram() |
| 619 | if (os.path.exists(os.environ["POL_USER_ROOT"] + "/configurations/manuals/" + game_exec)): |
| 620 | playonlinux.POL_Open(os.environ["POL_USER_ROOT"] + "/configurations/manuals/" + game_exec) |
| 621 | else: |
| 622 | wx.MessageBox(_("No manual found for {0}").format(game_exec), os.environ["APPLICATION_TITLE"]) |
| 623 | |
| 624 | def RRegistryEditor(self, event): |
| 625 | self.RConfigure("regedit") |
nothing calls this directly
no test coverage detected