Skip to content

Commit 636f0ee

Browse files
committed
fix ROI count bug
1 parent c28850b commit 636f0ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cellpose/gui/guiparts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def __call__(self):
198198
return self._value
199199

200200
def reset(self):
201-
self._value = 0
201+
self.set(0)
202202

203203
def __iadd__(self, amount):
204204
if not isinstance(amount, (int, float)):

0 commit comments

Comments
 (0)