summaryrefslogtreecommitdiff
path: root/src/imgui_context.cpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-09-28 17:39:03 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-09-28 17:39:03 -0500
commit876c829512301e3f20161f05d7c193540e6d1710 (patch)
tree17cb3f1956d88ce87e1bcd980ea67f0592b0bed4 /src/imgui_context.cpp
parentdac2e7507d0172e2a87ed5b2df9c320bc9717da6 (diff)
Working through file picker.
Diffstat (limited to 'src/imgui_context.cpp')
-rw-r--r--src/imgui_context.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/imgui_context.cpp b/src/imgui_context.cpp
index f45b22b..99ecd3f 100644
--- a/src/imgui_context.cpp
+++ b/src/imgui_context.cpp
@@ -47,6 +47,11 @@ const ImGuiIO& ImguiContext::getIO() const
return ImGui::GetIO();
}
+ImGuiIO& ImguiContext::getIO()
+{
+ return ImGui::GetIO();
+}
+
bool ImguiContext::processEvent(SDL_Event& event) const
{
return ImGui_ImplSDL2_ProcessEvent(&event);