We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5969a79 commit 629b206Copy full SHA for 629b206
1 file changed
src/diffpy/pdfgui/gui/plotpanel.py
@@ -198,7 +198,8 @@ def _represent(mixedNames):
198
# Fill the List
199
self.yDataList.DeleteAllItems()
200
for val in yvals:
201
- self.yDataList.InsertItem(1000, str(val))
+ # self.yDataList.InsertItem(sys.maxsize, str(val)) #doesn't work for windows
202
+ self.yDataList.InsertItem(100000, str(val))
203
self.yDataList.makeIDM()
204
self.yDataList.initializeSorter()
205
if yvals:
0 commit comments