about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2023-04-05 08:19:58 +0100
committerDaniel Santos <dan.git@brilhante.top>2023-07-01 10:06:43 +0100
commitc402f8d9d2b3f94bbc20ba9c0c43f6df3b7ca885 (patch)
tree3dcef582df2344e63238c1a41a463a4044ea73d2
parenta4ca6291afe1e407b72b2ec03bffc595946071f3 (diff)
downloadprofani-tty-c402f8d9d2b3f94bbc20ba9c0c43f6df3b7ca885.tar.gz
Use ASCII char in MAM loading string
 * MAM loading string char to ASCII, for better display in all TTYs.
 * All source code files have been checked, and there is no other
 issue for TTYs chars display.

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
-rw-r--r--src/ui/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.h b/src/ui/window.h
index a9244ffd..b01b6bb9 100644
--- a/src/ui/window.h
+++ b/src/ui/window.h
@@ -57,7 +57,7 @@
 #include "xmpp/muc.h"
 
 #define PAD_SIZE        1000
-#define LOADING_MESSAGE "Loading older messages…"
+#define LOADING_MESSAGE "Loading older messages..."
 
 void win_move_to_end(ProfWin* window);
 void win_show_status_string(ProfWin* window, const char* const from,