fix: Remove settings scaling warning as it doesn't make any sense anymore now

This commit is contained in:
WerWolv
2025-02-16 10:56:01 +01:00
parent 9e826b4c8b
commit c8f7dbf85e

View File

@@ -27,8 +27,6 @@ namespace hex::plugin::builtin {
namespace {
bool s_showScalingWarning = true;
/*
Values of this setting:
0 - do not check for updates on startup
@@ -191,11 +189,6 @@ namespace hex::plugin::builtin {
else if (m_value > 10)
m_value = 10;
if (s_showScalingWarning && (u32(m_value * 10) % 10) != 0) {
ImGui::SameLine();
ImGuiExt::HelpHover("hex.builtin.setting.interface.scaling.fractional_warning"_lang, ICON_VS_WARNING, ImGuiExt::GetCustomColorU32(ImGuiCustomCol_ToolbarRed));
}
return changed;
}