Skip to content

Commit

Permalink
Merge branch 'master' into imgui-ent-props
Browse files Browse the repository at this point in the history
  • Loading branch information
UncraftedName authored Sep 17, 2024
2 parents bcd1c13 + c9d1280 commit a030621
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion spt/features/visualizations/imgui/spt_imgui_widgets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ bool SptImGui::InputTextInteger(const char* label, const char* hint, long long&
char buf[24];
const char* fmtSpecifier = radix == 10 ? "%" PRId64 : "%" PRIx64;
snprintf(buf, sizeof buf, fmtSpecifier, val);
buf[sizeof(buf) - 1] = '\0';
ImGui::SetNextItemWidth(ImGui::GetFontSize() * (sizeof(buf) - 1) * 0.6f);
ImGuiInputTextFlags flags =
ImGuiInputTextFlags_CharsUppercase | ImGuiInputTextFlags_CharsNoBlank | ImGuiInputTextFlags_AutoSelectAll;
Expand Down

0 comments on commit a030621

Please sign in to comment.