Private
Public Access
1
0

gtk: fix attachment download race condition

This commit is contained in:
2026-02-22 00:36:15 -08:00
parent 69892a4d08
commit 64d7394ffa
2 changed files with 12 additions and 6 deletions

View File

@@ -327,8 +327,8 @@ private class TranscriptDrawingArea : Widget
private void recompute_message_layouts() {
var container_width = get_width();
float max_width = container_width * 0.90f;
float image_max_width = max_width * 0.75f;
float max_width = container_width * 0.80f;
float image_max_width = max_width * 0.70f;
DateTime? last_date = null;
string? last_sender = null;