Updated ImGui to 1.80

It works. It just works. Updating anything else usually takes hours and ImGui took literally 2 minutes. ocornut is amazing
This commit is contained in:
WerWolv
2021-01-21 23:09:43 +01:00
parent 0aacf1d07f
commit 7f4cc6e5c0
15 changed files with 5880 additions and 4484 deletions

View File

@@ -27,7 +27,7 @@ namespace hex {
void ViewStrings::createStringContextMenu(const FoundString &foundString) {
if (ImGui::TableGetHoveredColumn() == 2 && ImGui::IsMouseReleased(1) && ImGui::IsItemHovered()) {
if (ImGui::TableGetColumnFlags(2) == ImGuiTableColumnFlags_IsHovered && ImGui::IsMouseReleased(1) && ImGui::IsItemHovered()) {
ImGui::OpenPopup("StringContextMenu");
this->m_selectedString = foundString.string;
}