(self, event)
| 1010 | wx.MessageBox(_("Please select a program."), os.environ["APPLICATION_TITLE"]) |
| 1011 | |
| 1012 | def PolVaultSaveGame(self, event): |
| 1013 | game_exec = self.GetSelectedProgram() |
| 1014 | if game_exec != "": |
| 1015 | subprocess.Popen( |
| 1016 | ["bash", Variables.playonlinux_rep + "plugins/PlayOnLinux Vault/scripts/menu", "--app", game_exec]) |
| 1017 | else: |
| 1018 | wx.MessageBox(_("Please select a program."), os.environ["APPLICATION_TITLE"]) |
| 1019 | |
| 1020 | def InstallMenu(self, event): |
| 1021 | try: |
nothing calls this directly
no test coverage detected