Color 7is now the default color instead of white
This commit is contained in:
parent
b3a9dc8637
commit
7e2a98b0f5
1 changed files with 1 additions and 1 deletions
|
@ -1110,7 +1110,7 @@ class MessageInput(Input):
|
|||
Read one more char (c) and add \x19c to the string
|
||||
"""
|
||||
attr_char = read_char(self.core.stdscr)
|
||||
if attr_char in self.text_attributes or attr_char.isdigit():
|
||||
if attr_char in self.text_attributes or (attr_char.isdigit() and int(attr_char) < 7):
|
||||
self.do_command('\x19', False)
|
||||
self.do_command(attr_char)
|
||||
|
||||
|
|
Loading…
Reference in a new issue