summaryrefslogtreecommitdiff
path: root/silx/gui/plot/items/_pick.py
diff options
context:
space:
mode:
authorPicca Frédéric-Emmanuel <picca@debian.org>2021-01-06 14:10:23 +0100
committerPicca Frédéric-Emmanuel <picca@debian.org>2021-01-06 14:10:23 +0100
commit002ed7b38ea6faabaf5c38d72b7feb613a06bf18 (patch)
tree95017e251453fea7bc4cdee1f8c7948db5bcbb1e /silx/gui/plot/items/_pick.py
parent67d50044ca7c19d729e97856afdbb820554de27f (diff)
parentb3bea947efa55d2c0f198b6c6795b3177be27f45 (diff)
Update upstream source from tag 'upstream/0.14.0+dfsg'
Update to upstream version '0.14.0+dfsg' with Debian dir 4d37469f6d6ee58a6bdbac36ff5fed8399b69383
Diffstat (limited to 'silx/gui/plot/items/_pick.py')
-rw-r--r--silx/gui/plot/items/_pick.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/silx/gui/plot/items/_pick.py b/silx/gui/plot/items/_pick.py
index 4ddf4f6..8c8e781 100644
--- a/silx/gui/plot/items/_pick.py
+++ b/silx/gui/plot/items/_pick.py
@@ -48,7 +48,7 @@ class PickingResult(object):
self._indices = None
else:
# Indices is set to None if indices array is empty
- indices = numpy.array(indices, copy=False, dtype=numpy.int)
+ indices = numpy.array(indices, copy=False, dtype=numpy.int64)
self._indices = None if indices.size == 0 else indices
def getItem(self):