summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-09-13 18:47:01 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-09-13 18:47:01 +0200
commit38019a9693375ac6719ffec43bff63774e142387 (patch)
treee9374df460f7949c93a9dc031f450bffb906f6c2 /libs
parentd8a9d534a5a39fd3d51a6ffaf92fde39a4b4077c (diff)
invoice peppol work
Diffstat (limited to 'libs')
-rw-r--r--libs/ImGuiDatePicker/ImGuiDatePicker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ImGuiDatePicker/ImGuiDatePicker.cpp b/libs/ImGuiDatePicker/ImGuiDatePicker.cpp
index 8c81b2b..207a902 100644
--- a/libs/ImGuiDatePicker/ImGuiDatePicker.cpp
+++ b/libs/ImGuiDatePicker/ImGuiDatePicker.cpp
@@ -361,7 +361,7 @@ namespace ImGui
if (Button(std::to_string(day).c_str(), ImVec2(GetContentRegionAvail().x, GetTextLineHeightWithSpacing() + 5.0f)))
{
- v = EncodeTimePoint(day, month, year);
+ v = EncodeTimePoint(day+1, month, year);
res = true;
CloseCurrentPopup();
}