Compare commits

...

3 Commits

Author SHA1 Message Date
d0761bf60e revert crop by default (did not work as intended) 2024-02-29 19:15:33 +01:00
0f41ee6a2e add screencap to readme 2024-02-23 11:20:49 +01:00
0aeafec019 fix month starting at 0 2024-02-15 15:34:44 +01:00
4 changed files with 7 additions and 3 deletions

View File

@ -2,3 +2,7 @@
![tomato](res/icon/tomato_v1_256.png)
## Highly experimental solanaceae client with Tox built-in
![group chat](res/tomato_screenshot_group_bot_text_23-02-2024.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@ -359,8 +359,8 @@ float ChatGui4::render(float time_delta) {
// msg
if (ImGui::TableNextColumn()) {
ImGui::TextDisabled("DATE CHANGED from %d.%d.%d to %d.%d.%d",
1900+prev_tm.tm_year, prev_tm.tm_mon, prev_tm.tm_mday,
1900+next_tm.tm_year, next_tm.tm_mon, next_tm.tm_mday
1900+prev_tm.tm_year, 1+prev_tm.tm_mon, prev_tm.tm_mday,
1900+next_tm.tm_year, 1+next_tm.tm_mon, next_tm.tm_mday
);
}
ImGui::TableNextRow(0, TEXT_BASE_HEIGHT);

View File

@ -32,7 +32,7 @@ struct SendImagePopup {
Rect crop_rect;
Rect crop_before_drag;
bool cropping {true};
bool cropping {false};
bool dragging_last_frame_ul {false};
bool dragging_last_frame_lr {false};