diff --git a/src/chat_gui/contact_list.cpp b/src/chat_gui/contact_list.cpp index 5ab4eab3..10e8b6ea 100644 --- a/src/chat_gui/contact_list.cpp +++ b/src/chat_gui/contact_list.cpp @@ -1,6 +1,7 @@ #include "./contact_list.hpp" #include +#include #include //#include @@ -96,6 +97,11 @@ bool renderContactBig( const auto* cstate = c.try_get(); if (ImGui::BeginItemTooltip()) { + if (c.all_of()) { + const auto id_str = bin2hex(c.get().data); + ImGui::Text("ID: %s", id_str.c_str()); + } + if (cstate != nullptr) { ImGui::Text("Connection state: %s", (cstate->state == Contact::Components::ConnectionState::disconnected)