| 1154 | } |
| 1155 | |
| 1156 | inline float GetDateTimeWidth(ImPlotDateTimeSpec fmt) { |
| 1157 | static const ImPlotTime t_max_width = MakeTime(2888, 12, 22, 12, 58, 58, 888888); // best guess at time that maximizes pixel width |
| 1158 | char buffer[32]; |
| 1159 | FormatDateTime(t_max_width, buffer, 32, fmt); |
| 1160 | return ImGui::CalcTextSize(buffer).x; |
| 1161 | } |
| 1162 | |
| 1163 | inline bool TimeLabelSame(const char* l1, const char* l2) { |
| 1164 | size_t len1 = strlen(l1); |
no test coverage detected