Skip to content

Commit

Permalink
Fix overflow spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Caladius committed Nov 18, 2024
1 parent 8de4c8e commit 2cd192e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soh/soh/Enhancements/TimeDisplay/TimeDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void TimeDisplayWindow::Draw() {
ImGui::Text("No Enabled Timers...");
} else {
ImGui::SetWindowFontScale(fontScale);
ImGui::BeginTable("Timer List", 2);
ImGui::BeginTable("Timer List", 2, ImGuiTableFlags_NoClip);
for (auto& timers : activeTimers) {
ImGui::PushID(timers.timeID);
ImGui::TableNextRow();
Expand Down

0 comments on commit 2cd192e

Please sign in to comment.