Skip to content

Commit 629b206

Browse files
ENH: comment old insert code.
1 parent 5969a79 commit 629b206

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/diffpy/pdfgui/gui/plotpanel.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ def _represent(mixedNames):
198198
# Fill the List
199199
self.yDataList.DeleteAllItems()
200200
for val in yvals:
201-
self.yDataList.InsertItem(1000, str(val))
201+
# self.yDataList.InsertItem(sys.maxsize, str(val)) #doesn't work for windows
202+
self.yDataList.InsertItem(100000, str(val))
202203
self.yDataList.makeIDM()
203204
self.yDataList.initializeSorter()
204205
if yvals:

0 commit comments

Comments
 (0)