mirror of
https://github.com/clockworkpi/launcher.git
synced 2026-03-20 02:42:39 +01:00
```
def Click(self):
if self._PsIndex > len(self._MyList) -1:
```
* use this to avoid PsIndex out of the range of self._MyList
* download games and showed up
This commit is contained in:
@@ -152,7 +152,7 @@ class GPUDriverPage(Page):
|
||||
self._Scroller.SetCanvasHWND(self._HWND)
|
||||
|
||||
def Click(self):
|
||||
if len(self._MyList) == 0:
|
||||
if self._PsIndex > len(self._MyList) -1:
|
||||
return
|
||||
|
||||
cur_li = self._MyList[self._PsIndex]
|
||||
|
||||
Reference in New Issue
Block a user