Use a space instead of a cross while checking features
This commit is contained in:
parent
616d0d2c73
commit
f93f92517d
2 changed files with 2 additions and 1 deletions
|
@ -818,7 +818,7 @@ class OneToOneTab(ChatTab):
|
|||
self.__initial_disco = True
|
||||
|
||||
ok = get_theme().CHAR_OK
|
||||
nope = get_theme().CHAR_ERROR
|
||||
nope = get_theme().CHAR_EMPTY
|
||||
|
||||
correct = ok if correct else nope
|
||||
attention = ok if attention else nope
|
||||
|
|
|
@ -303,6 +303,7 @@ class Theme(object):
|
|||
CHAR_NEW_TEXT_SEPARATOR = '- '
|
||||
CHAR_OK = '✔'
|
||||
CHAR_ERROR = '✖'
|
||||
CHAR_EMPTY = ' '
|
||||
CHAR_ACK_RECEIVED = CHAR_OK
|
||||
CHAR_COLUMN_ASC = ' ▲'
|
||||
CHAR_COLUMN_DESC = ' ▼'
|
||||
|
|
Loading…
Reference in a new issue