From c00b83cd1abffb77b643d40474133a67f726362e Mon Sep 17 00:00:00 2001 From: thanhnv Date: Wed, 16 Sep 2026 00:31:33 +0900 Subject: [PATCH] fix: add spacing to project row metadata --- presentation/workspace/project_editing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presentation/workspace/project_editing.py b/presentation/workspace/project_editing.py index 78ab5cd..8851da9 100644 --- a/presentation/workspace/project_editing.py +++ b/presentation/workspace/project_editing.py @@ -52,7 +52,7 @@ class ProjectRow(QWidget): lay = QVBoxLayout(self) lay.setContentsMargins(6, 4, 6, 4) - lay.setSpacing(0) + lay.setSpacing(3) self.title_label = QLabel(name) self.counts_label = QLabel() self.counts_label.setObjectName("hint")