fix(theme): reduce tree item horizontal padding to prevent truncation

QTreeView::item had padding: 4px on all sides, eating 8px of
horizontal space per item. Combined with icon decorations and
indentation this caused excessive middle-elide truncation in the
model tree. Change to padding: 2px 0px (vertical only).
This commit is contained in:
forbes
2026-01-31 12:33:01 -06:00
parent fea1280fa9
commit b3fedfb19f
2 changed files with 2 additions and 2 deletions

View File

@@ -759,7 +759,7 @@ QTreeView {
}
QTreeView::item {
padding: 4px;
padding: 2px 0px;
border-radius: 2px;
}

View File

@@ -759,7 +759,7 @@ QTreeView {
}
QTreeView::item {
padding: 4px;
padding: 2px 0px;
border-radius: 2px;
}