Skip to content

Commit

Permalink
fix(ui): reduce field title width to make room for edit and delete bu…
Browse files Browse the repository at this point in the history
…ttons
  • Loading branch information
CyanVoxel committed Feb 3, 2025
1 parent 93fc28e commit 90a826d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagstudio/src/qt/widgets/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, title: str = "Field", inline: bool = True) -> None:

self.title_widget = QLabel()
self.title_widget.setMinimumHeight(button_size)
self.title_widget.setMinimumWidth(240)
self.title_widget.setMinimumWidth(200)
self.title_widget.setObjectName("fieldTitle")
self.title_widget.setWordWrap(True)
self.title_widget.setText(title)
Expand Down

0 comments on commit 90a826d

Please sign in to comment.