mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
fix: Remove settings scaling warning as it doesn't make any sense anymore now
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user