(self, event)
| 696 | subprocess.Popen(["bash", Variables.playonlinux_env + "/bash/update_git"]) |
| 697 | |
| 698 | def GoToAppDir(self, event): |
| 699 | self.game_exec = self.GetSelectedProgram() |
| 700 | if not playonlinux.GetSettings("OPEN_IN", playonlinux.getPrefix(self.game_exec)): |
| 701 | playonlinux.open_folder(self.game_exec) |
| 702 | else: |
| 703 | playonlinux.open_folder(self.game_exec, |
| 704 | playonlinux.GetSettings("OPEN_IN", playonlinux.getPrefix(self.game_exec))) |
| 705 | |
| 706 | def ChangeIcon(self, event): |
| 707 | self.IconDir = Variables.homedir + "/.local/share/icons/" |
nothing calls this directly
no test coverage detected