mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 05:27:41 -05:00
build: Updated ImGui, libfmt and libyara
This commit is contained in:
@@ -54,9 +54,9 @@ namespace hex::plugin::builtin {
|
||||
{ "resize-grip-active", ImGuiCol_ResizeGripActive },
|
||||
{ "tab", ImGuiCol_Tab },
|
||||
{ "tab-hovered", ImGuiCol_TabHovered },
|
||||
{ "tab-active", ImGuiCol_TabActive },
|
||||
{ "tab-unfocused", ImGuiCol_TabUnfocused },
|
||||
{ "tab-unfocused-active", ImGuiCol_TabUnfocusedActive },
|
||||
{ "tab-active", ImGuiCol_TabSelected },
|
||||
{ "tab-unfocused", ImGuiCol_TabDimmed },
|
||||
{ "tab-unfocused-active", ImGuiCol_TabDimmedSelected },
|
||||
{ "docking-preview", ImGuiCol_DockingPreview },
|
||||
{ "docking-empty-background", ImGuiCol_DockingEmptyBg },
|
||||
{ "plot-lines", ImGuiCol_PlotLines },
|
||||
|
||||
@@ -439,8 +439,8 @@ namespace hex::plugin::builtin {
|
||||
{
|
||||
auto providers = ImHexApi::Provider::getProviders();
|
||||
|
||||
ImGui::PushStyleColor(ImGuiCol_TabActive, ImGui::GetColorU32(ImGuiCol_MenuBarBg));
|
||||
ImGui::PushStyleColor(ImGuiCol_TabUnfocusedActive, ImGui::GetColorU32(ImGuiCol_MenuBarBg));
|
||||
ImGui::PushStyleColor(ImGuiCol_TabSelected, ImGui::GetColorU32(ImGuiCol_MenuBarBg));
|
||||
ImGui::PushStyleColor(ImGuiCol_TabDimmedSelected, ImGui::GetColorU32(ImGuiCol_MenuBarBg));
|
||||
auto providerSelectorVisible = ImGui::BeginTabBar("provider_switcher", ImGuiTabBarFlags_FittingPolicyScroll | ImGuiTabBarFlags_Reorderable | ImGuiTabBarFlags_AutoSelectNewTabs);
|
||||
ImGui::PopStyleColor(2);
|
||||
|
||||
|
||||
@@ -103,7 +103,7 @@ namespace hex::plugin::builtin {
|
||||
ImGui::Separator();
|
||||
|
||||
// Draw the results
|
||||
if (ImGui::BeginChild("##results", ImGui::GetContentRegionAvail(), false, ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_NavFlattened)) {
|
||||
if (ImGui::BeginChild("##results", ImGui::GetContentRegionAvail(), ImGuiChildFlags_NavFlattened, ImGuiWindowFlags_AlwaysVerticalScrollbar)) {
|
||||
for (const auto &[displayResult, matchedCommand, callback] : m_lastResults) {
|
||||
ImGui::PushTabStop(true);
|
||||
ON_SCOPE_EXIT { ImGui::PopTabStop(); };
|
||||
|
||||
Reference in New Issue
Block a user