From 33875cb58b213cdb8c7a9e6172e15945c3b44f14 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Sat, 27 Apr 2024 13:53:26 +0200 Subject: [PATCH] string cant be empty --- src/chat_gui/contact_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat_gui/contact_list.cpp b/src/chat_gui/contact_list.cpp index 0334837..82ce543 100644 --- a/src/chat_gui/contact_list.cpp +++ b/src/chat_gui/contact_list.cpp @@ -293,7 +293,7 @@ bool renderContactBig( ImGui::TextUnformatted(slt->text.c_str(), slt->text.c_str() + slt->first_line_length); ImGui::PopStyleColor(); } else { - ImGui::TextDisabled(""); // or dummy? + ImGui::TextDisabled(" "); // or dummy? } }