fix: Various TCP tool issues

This commit is contained in:
WerWolv 2023-10-22 21:52:55 +02:00
parent e92f937587
commit cb2aee0ed7
2 changed files with 5 additions and 4 deletions

@ -1 +1 @@
Subproject commit c5698ed2cf3ea14382a597cc041fb6fc2674a982
Subproject commit d902b5597735ed91e9626598304853774adee5ef

View File

@ -1954,7 +1954,7 @@ namespace hex::plugin::builtin {
for (const auto &message : messages) {
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::TextFormattedWrappedSelectable("{}", message.c_str());
ImGui::TextFormattedSelectable("{}", message.c_str());
}
}
@ -1968,6 +1968,7 @@ namespace hex::plugin::builtin {
if (ImGui::IconButton(ICON_VS_DEBUG_STACKFRAME, ImGui::GetStyleColorVec4(ImGuiCol_Text))) {
client.writeString(input);
input.clear();
}
ImGui::EndTabItem();
@ -2014,7 +2015,7 @@ namespace hex::plugin::builtin {
messages.emplace_back(data.begin(), data.end());
return {};
});
}, nullptr, true);
}
});
}
@ -2029,7 +2030,7 @@ namespace hex::plugin::builtin {
for (const auto &message : messages) {
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::TextFormattedWrappedSelectable("{}", message.c_str());
ImGui::TextFormattedSelectable("{}", message.c_str());
}
}