Display message in bold format

This commit is contained in:
Yohann D'ANELLO 2020-11-27 17:54:31 +01:00
parent fb8d8f033b
commit be9c726fa0
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class MessageDisplay(Display):
self.height + 2, self.width + 4)
self.box.display()
self.pad.erase()
self.addstr(self.pad, 0, 0, self.message)
self.addstr(self.pad, 0, 0, self.message, curses.A_BOLD)
self.refresh_pad(self.pad, 0, 0, self.y, self.x,
self.height + self.y - 1,
self.width + self.x - 1)