1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Code to prevent error when letters are missing.

This commit is contained in:
Joe R 2022-03-02 21:49:38 -05:00
parent f4bed0f620
commit 9d303d265d

View file

@ -220,14 +220,16 @@ class Images:
# load letters
for rank in range(self.cs.nletters):
name = "l%02d" % (rank + 1)
self._letter_positive.append(
self.__loadBottom(name, color='black'))
bottom = self.__loadBottom(name, color='black')
if bottom is not None:
self._letter_positive.append(bottom)
if progress:
progress.update(step=pstep)
# load negative letters
name = "l%02d-n" % (rank + 1)
self._letter_negative.append(
self.__loadBottom(name, color='white'))
bottom = self.__loadBottom(name, color='white')
if bottom is not None:
self._letter_negative.append(bottom)
if progress:
progress.update(step=pstep)