Skip to content

Commit e974b18

Browse files
committed
Fixed BaseList label index sign.
1 parent 8ed1c31 commit e974b18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: survey/_widgets.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1200,10 +1200,10 @@ def __init__(self,
12001200

12011201
if not label is None:
12021202
def funnel_enter_entry_get(index):
1203-
spot = _get_mesh_spot(axis, index)
1204-
tile = self._mutate.tiles.get(spot)
12051203
if not axis:
12061204
index *= - 1
1205+
spot = _get_mesh_spot(axis, index)
1206+
tile = self._mutate.tiles.get(spot)
12071207
value = label(index, tile)
12081208
lines = _helpers.split_lines(value)
12091209
return lines

0 commit comments

Comments
 (0)