diff options
Diffstat (limited to 'tools/genboxes.py')
-rw-r--r-- | tools/genboxes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genboxes.py b/tools/genboxes.py index eeea2b9..12f6c92 100644 --- a/tools/genboxes.py +++ b/tools/genboxes.py @@ -20,7 +20,7 @@ def flush(): for line in open("tools/boxes.svg").readlines(): line = line.strip() - if line == "<rect": + if line == "<rect" or line == "<image": flush() mode = 'rect' x = y = w = h = 0 |