| @@ -80,18 +80,18 @@ class Main: | |||||
| screen.blit ( | screen.blit ( | ||||
| nizika_font.render ( | nizika_font.render ( | ||||
| (answer | (answer | ||||
| if CommonModule.len_by_full (answer) <= 26 | |||||
| else CommonModule.mid_by_full (answer, 0, 26)), | |||||
| if CommonModule.len_by_full (answer) <= 16 | |||||
| else CommonModule.mid_by_full (answer, 0, 16)), | |||||
| True, | True, | ||||
| (192, 0, 0)), | (192, 0, 0)), | ||||
| (100, 150)) | (100, 150)) | ||||
| if CommonModule.len_by_full (answer) > 26: | |||||
| if CommonModule.len_by_full (answer) > 16: | |||||
| screen.blit ( | screen.blit ( | ||||
| nizika_font.render ( | nizika_font.render ( | ||||
| (CommonModule.mid_by_full (answer, 26, 26) | |||||
| if CommonModule.len_by_full (answer) <= 52 | |||||
| (CommonModule.mid_by_full (answer, 16, 16) | |||||
| if CommonModule.len_by_full (answer) <= 32 | |||||
| else (CommonModule.mid_by_full ( | else (CommonModule.mid_by_full ( | ||||
| answer, 26, 24.5) | |||||
| answer, 16, 14.5) | |||||
| + '...')), | + '...')), | ||||
| True, | True, | ||||
| (192, 0, 0)), | (192, 0, 0)), | ||||