mirror of https://github.com/WerWolv/ImHex
fix: Use proper format specifiers for SetItemTooltip
This commit is contained in:
parent
31322bcc76
commit
40b48f6460
|
|
@ -523,7 +523,7 @@ namespace hex::plugin::builtin {
|
|||
ContentRegistry::Settings::write<bool>("hex.builtin.setting.interface", "hex.builtin.setting.interface.simplified_welcome_screen", s_simplifiedWelcomeScreen);
|
||||
WorkspaceManager::switchWorkspace(s_simplifiedWelcomeScreen ? "Minimal" : "Default");
|
||||
}
|
||||
ImGui::SetItemTooltip("hex.builtin.welcome.quick_settings.simplified"_lang);
|
||||
ImGui::SetItemTooltip("%s", "hex.builtin.welcome.quick_settings.simplified"_lang.get());
|
||||
}
|
||||
ImGuiExt::EndSubWindow();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue