This commit is contained in:
恍兮惚兮 2024-06-28 00:10:11 +08:00
parent 79ae75cfe5
commit 4981e7b4a1
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ class bgmsettings(QDialog):
super().__init__(parent, Qt.WindowType.WindowCloseButtonHint)
self._ref = _ref
self.resize(QSize(800, 10))
self.setWindowTitle("vndb")
self.setWindowTitle(self._ref.config_all["name"])
fl = QFormLayout(self)
fl.addRow("access-token", getlineedit(_ref.config, "access-token"))
btn = QPushButton(_TR("上传游戏"))

View File

@ -281,7 +281,7 @@ class vndbsettings(QDialog):
super().__init__(parent, Qt.WindowType.WindowCloseButtonHint)
self._ref = _ref
self.resize(QSize(800, 10))
self.setWindowTitle("vndb")
self.setWindowTitle(self._ref.config_all["name"])
fl = QFormLayout(self)
fl.addRow("Token", getlineedit(_ref.config, "Token"))
btn = QPushButton(_TR("上传游戏"))