Aristos
Lightseeker
Problem solved. See attached IconGrid.py and IconGrid_BUG.py.
I basically replaced the values of 1 with self.numRows in the following lines:
def scrollUp(self):
# Change to self.numRows instead of 1 RJG
self.scrollPosition = self.scrollPosition - self.numRows
self.refresh()
def scrollDown(self):
# Change to self.numRows instead of 1 RJG
self.scrollPosition = self.scrollPosition + self.numRows
self.refresh()
in both files.
Works like a charm.
Please add to BUG SVN.
Chau.
I basically replaced the values of 1 with self.numRows in the following lines:
def scrollUp(self):
# Change to self.numRows instead of 1 RJG
self.scrollPosition = self.scrollPosition - self.numRows
self.refresh()
def scrollDown(self):
# Change to self.numRows instead of 1 RJG
self.scrollPosition = self.scrollPosition + self.numRows
self.refresh()
in both files.
Works like a charm.
Please add to BUG SVN.
Chau.