Skip to content

Commit

Permalink
Use PyQt5.7 compatible namespace in dialogs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Gatsik committed Apr 8, 2022
1 parent f036188 commit b457828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vaults/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, dler, title, label, silent=False):
self._progress.canceled.connect(self._dler.cancel)

progressBar = QtWidgets.QProgressBar(self._progress)
progressBar.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
progressBar.setAlignment(QtCore.Qt.AlignCenter)
self._progress.setBar(progressBar)

self.timer = QtCore.QTimer()
Expand Down

0 comments on commit b457828

Please sign in to comment.