Skip to content

Commit

Permalink
revert: accidental inclution of TagStudioDev#464
Browse files Browse the repository at this point in the history
  • Loading branch information
ChloeZamorano committed Feb 6, 2025
1 parent 6fb0ff1 commit f14ab54
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/add_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def __init__(self, library: Library):
self.setMinimumSize(400, 300)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.title_widget = QLabel()
self.title_widget.setObjectName("fieldTitle")
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/delete_unlinked.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def __init__(self, driver: "QtDriver", tracker: MissingRegistry):
self.setMinimumSize(500, 400)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.desc_widget = QLabel()
self.desc_widget.setObjectName("descriptionLabel")
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/drop_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ def __init__(self, driver: "QtDriver"):
self.setMinimumSize(500, 400)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.desc_widget = QLabel()
self.desc_widget.setObjectName("descriptionLabel")
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/file_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def __init__(self, library: "Library"):
self.setMinimumSize(240, 400)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

# Create Table Widget --------------------------------------------------
self.table = QTableWidget(len(self.lib.prefs(LibraryPrefs.EXTENSION_LIST)), 1)
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/fix_dupes.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def __init__(self, library: "Library", driver: "QtDriver"):
self.setMinimumSize(400, 300)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.tracker = DupeRegistry(library=self.lib)

Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/fix_unlinked.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def __init__(self, library: "Library", driver: "QtDriver"):
self.setMinimumSize(400, 300)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.unlinked_desc_widget = QLabel()
self.unlinked_desc_widget.setObjectName("unlinkedDescriptionLabel")
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/folders_to_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ def __init__(self, library: "Library", driver: "QtDriver"):
self.setMinimumSize(640, 640)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.title_widget = QLabel()
self.title_widget.setObjectName("title")
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/modals/mirror_entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def __init__(self, driver: "QtDriver", tracker: DupeRegistry):
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 6, 6, 6)
self.tracker = tracker
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.desc_widget = QLabel()
self.desc_widget.setObjectName("descriptionLabel")
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/widgets/paged_panel/paged_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def __init__(self, size: tuple[int, int], stack: list[PagedPanelState]):
self.root_layout.setObjectName("baseLayout")
self.root_layout.setAlignment(Qt.AlignmentFlag.AlignCenter)
self.root_layout.setContentsMargins(0, 0, 0, 0)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.content_container = QWidget()
self.content_layout = QVBoxLayout(self.content_container)
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/widgets/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def __init__(
self.setWindowModality(Qt.WindowModality.ApplicationModal)
self.root_layout = QVBoxLayout(self)
self.root_layout.setContentsMargins(6, 0, 6, 6)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

self.title_widget = QLabel()
self.title_widget.setObjectName("fieldTitle")
Expand Down
1 change: 0 additions & 1 deletion tagstudio/src/qt/widgets/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def __init__(
self.setWindowFlags(self.pb.windowFlags() & ~Qt.WindowType.WindowCloseButtonHint)
self.setWindowTitle(window_title)
self.setWindowModality(Qt.WindowModality.ApplicationModal)
self.setWindowFlag(Qt.Dialog, on=True) # type: ignore

def update_label(self, text: str):
self.pb.setLabelText(text)
Expand Down

0 comments on commit f14ab54

Please sign in to comment.