Skip to content

Commit

Permalink
Rename "Subtags" to "Parent Tags"
Browse files Browse the repository at this point in the history
Mentioned change in #211
  • Loading branch information
CyanVoxel committed Jun 3, 2024
1 parent 84a4b2f commit c75aff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tagstudio/src/qt/modals/build_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def __init__(self, library, tag_id: int = -1):
self.subtags_layout.setSpacing(0)
self.subtags_layout.setAlignment(Qt.AlignmentFlag.AlignLeft)
self.subtags_title = QLabel()
self.subtags_title.setText("Subtags")
self.subtags_title.setText("Parent Tags")
self.subtags_layout.addWidget(self.subtags_title)

self.scroll_contents = QWidget()
Expand All @@ -118,7 +118,7 @@ def __init__(self, library, tag_id: int = -1):
self.subtags_add_button.setText("+")
tsp = TagSearchPanel(self.lib)
tsp.tag_chosen.connect(lambda x: self.add_subtag_callback(x))
self.add_tag_modal = PanelModal(tsp, "Add Subtags", "Add Subtags")
self.add_tag_modal = PanelModal(tsp, "Add Parent Tags", "Add Parent Tags")
self.subtags_add_button.clicked.connect(self.add_tag_modal.show)
self.subtags_layout.addWidget(self.subtags_add_button)

Expand Down

0 comments on commit c75aff4

Please sign in to comment.