forgot to update plugin

This commit is contained in:
Green Sky 2024-01-12 18:51:29 +01:00
parent 20b4cdc5f1
commit 7fa6aa7ac2
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 5ae3f07c3ac16c3255ed5b7792c17545c7667ac3 Subproject commit b50269062172b013d21fcc38b3693d09f91a2154

View File

@ -370,10 +370,10 @@ void ChatGui4::render(float time_delta) {
// wrongly assumes contacts never get removed from a group // wrongly assumes contacts never get removed from a group
if (sub_contacts != nullptr && list.size() < sub_contacts->size()) { if (sub_contacts != nullptr && list.size() < sub_contacts->size()) {
// if partically delivered // 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 { } else {
// if fully delivered // 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()) { if (ImGui::BeginItemTooltip()) {
@ -408,10 +408,10 @@ void ChatGui4::render(float time_delta) {
// wrongly assumes contacts never get removed from a group // wrongly assumes contacts never get removed from a group
if (sub_contacts != nullptr && list.size() < sub_contacts->size()) { if (sub_contacts != nullptr && list.size() < sub_contacts->size()) {
// if partially read // 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 { } else {
// if fully read // 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()) { if (ImGui::BeginItemTooltip()) {