Fix right-alignment (clipping) on WaitingMessage

master
Matthew Stratford 2018-09-15 16:08:32 +01:00
parent 7316522b0e
commit 484f7c4063
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ class WaitingMessage:
self.window.show()
self.window.text(5, 5, title, TILDA_COLOR)
self.window.line(0, 25, ugfx.width() - 60, 25, ugfx.BLACK)
self.label = ugfx.Label(5, 40, self.window.width() - 10, ugfx.height() - 40, text = text, parent=self.window)
self.label = ugfx.Label(5, 40, self.window.width() - 15, ugfx.height() - 40, text = text, parent=self.window)
# Indicator to show something is going on
#self.indicator = ugfx.Label(ugfx.width() - 100, 0, 20, 20, text = "...", parent=self.window)