chore: Update PyQT version to PyQT6 and adjust window geometry in URLManager

This commit is contained in:
Axel Rafn
2024-07-13 17:03:07 +02:00
parent f9ec284ec2
commit b1d72dde93
3 changed files with 28 additions and 30 deletions

2
app.py
View File

@ -71,7 +71,7 @@ class URLManager(QWidget):
self.translations = {}
self.load_translations(f'lang/translations_{self.settings["language"].lower()[:2]}.json')
self.setWindowTitle(self.translations['title'])
self.setGeometry(100, 100, 600, 800)
self.setGeometry(100, 100, 600, 600)
self.setWindowIcon(QIcon('assets/logo.png'))
self.layout = QVBoxLayout()