1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-12-18 10:35:59 +01:00

Fixed missing symbols when using IMGUI_DISABLE_DEMO_WINDOWS (e.g. with ImPlot) (#8221)

This commit is contained in:
Stewart Mccready 2024-12-11 13:14:46 +00:00 committed by GitHub
parent c3ffd4c53e
commit 2ca83f0bc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10397,6 +10397,8 @@ void ImGui::ShowAboutWindow(bool*) {}
void ImGui::ShowDemoWindow(bool*) {}
void ImGui::ShowUserGuide() {}
void ImGui::ShowStyleEditor(ImGuiStyle*) {}
bool ImGui::ShowStyleSelector(const char* label) { return false; }
void ImGui::ShowFontSelector(const char* label) {}
#endif