This commit is contained in:
Kovid Goyal 2020-07-24 16:39:54 +05:30
parent fd08608ba5
commit 94c28fc92d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -84,8 +84,8 @@ def range_extents(start, end, in_flow_mode):
for_boundary(start, ans.start)
for_boundary(end, ans.end)
ans.start.is_empty = ans.start.height > 0
ans.end.is_empty = ans.end.height > 0
ans.start.is_empty = ans.start.height <= 0
ans.end.is_empty = ans.end.height <= 0
return ans