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:
parent
f4bed0f620
commit
9d303d265d
1 changed files with 6 additions and 4 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue