summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tabs/basetabs.py2
-rwxr-xr-xsrc/theming.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/tabs/basetabs.py b/src/tabs/basetabs.py
index 40dcb8e6..1b6e0d4c 100644
--- a/src/tabs/basetabs.py
+++ b/src/tabs/basetabs.py
@@ -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
diff --git a/src/theming.py b/src/theming.py
index 0d83db9d..1e9d6c40 100755
--- a/src/theming.py
+++ b/src/theming.py
@@ -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 = ' ▼'