From 7fa6aa7ac2f632a0b679d290492601e82a5c33c6 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Fri, 12 Jan 2024 18:51:29 +0100 Subject: [PATCH] forgot to update plugin --- external/solanaceae_plugin | 2 +- src/chat_gui4.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/external/solanaceae_plugin b/external/solanaceae_plugin index 5ae3f07c..b5026906 160000 --- a/external/solanaceae_plugin +++ b/external/solanaceae_plugin @@ -1 +1 @@ -Subproject commit 5ae3f07c3ac16c3255ed5b7792c17545c7667ac3 +Subproject commit b50269062172b013d21fcc38b3693d09f91a2154 diff --git a/src/chat_gui4.cpp b/src/chat_gui4.cpp index e790a7f4..861ae43e 100644 --- a/src/chat_gui4.cpp +++ b/src/chat_gui4.cpp @@ -370,10 +370,10 @@ void ChatGui4::render(float time_delta) { // wrongly assumes contacts never get removed from a group if (sub_contacts != nullptr && list.size() < sub_contacts->size()) { // if partically delivered - ImGui::TextColored(ImVec4{0.7f, 0.7f, 0.1f, 0.5f}, "d"); + ImGui::TextColored(ImVec4{0.7f, 0.7f, 0.1f, 0.7f}, "d"); } else { // if fully delivered - ImGui::TextColored(ImVec4{0.1f, 0.8f, 0.1f, 0.5f}, "D"); + ImGui::TextColored(ImVec4{0.1f, 0.8f, 0.1f, 0.7f}, "D"); } if (ImGui::BeginItemTooltip()) { @@ -408,10 +408,10 @@ void ChatGui4::render(float time_delta) { // wrongly assumes contacts never get removed from a group if (sub_contacts != nullptr && list.size() < sub_contacts->size()) { // if partially read - ImGui::TextColored(ImVec4{0.7f, 0.7f, 0.1f, 0.5f}, "r"); + ImGui::TextColored(ImVec4{0.7f, 0.7f, 0.1f, 0.7f}, "r"); } else { // if fully read - ImGui::TextColored(ImVec4{0.1f, 0.8f, 0.1f, 0.5f}, "R"); + ImGui::TextColored(ImVec4{0.1f, 0.8f, 0.1f, 0.7f}, "R"); } if (ImGui::BeginItemTooltip()) {