- Improve DBViewer behaviour and UI

(cherry picked from commit cb41787f5525aa73175ad06299d0a799ebf731e2)
This commit is contained in:
Infi
2026-05-01 20:14:13 +02:00
committed by JonKazama-Hellion
parent 135f7a9bf7
commit e219b3e1fe
19 changed files with 652 additions and 12 deletions
+3
View File
@@ -65,6 +65,9 @@ public static class DateWidget
ImGui.SameLine(0, 3.0f * ImGuiHelpers.GlobalScale);
ImGuiUtil.IconButton(FontAwesomeIcon.Calendar, id.ToString());
if (ImGui.IsItemHovered())
ImGui.SetTooltip(Language.DatePicker_Tooltip);
if (DatePicker(label, ref date, closeWhenMouseLeavesIt))
dateString = date.ToString(format);
}