mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-23 06:41:32 +03:00
Safety
This commit is contained in:
parent
14725279c9
commit
81720d51e6
@ -1403,7 +1403,10 @@ class AnsiArtDocument:
|
|||||||
x = int((x - min_x) / cell_width)
|
x = int((x - min_x) / cell_width)
|
||||||
y = int((y - min_y) / cell_height)
|
y = int((y - min_y) / cell_height)
|
||||||
if fill is not None:
|
if fill is not None:
|
||||||
document.bg[y][x] = fill
|
try:
|
||||||
|
document.bg[y][x] = fill
|
||||||
|
except IndexError:
|
||||||
|
print("Warning: rect out of bounds: " + ET.tostring(rect, encoding="unicode"))
|
||||||
|
|
||||||
# Find text elements to define the foreground.
|
# Find text elements to define the foreground.
|
||||||
texts = root.findall(".//{http://www.w3.org/2000/svg}text")
|
texts = root.findall(".//{http://www.w3.org/2000/svg}text")
|
||||||
|
Loading…
Reference in New Issue
Block a user