Clarify Steam ID field expects number only, not full URL

This commit is contained in:
2026-04-02 07:35:34 -04:00
parent 315724598f
commit 434e4f8e0b

View File

@@ -236,14 +236,14 @@ class SettingsDialog(QDialog):
# --- Steam ID --- # --- Steam ID ---
layout.addWidget(QLabel("<b>Steam ID (64-bit)</b>")) layout.addWidget(QLabel("<b>Steam ID (64-bit)</b>"))
self.id_edit = QLineEdit(settings.value("steam_id", "")) self.id_edit = QLineEdit(settings.value("steam_id", ""))
self.id_edit.setPlaceholderText("e.g. 76561198000000000") self.id_edit.setPlaceholderText("17-digit number only, e.g. 76561198000000000")
layout.addWidget(self.id_edit) layout.addWidget(self.id_edit)
id_help = QLabel( id_help = QLabel(
'Your 17-digit Steam ID. To find it: open your Steam profile in a browser — ' 'Paste the <b>17-digit number only</b> — not the full URL. '
'the number in the URL (<i>steamcommunity.com/profiles/<b>XXXXXXXXXXXXXXXXX</b></i>) ' 'Find it by opening your Steam profile in a browser: the number in '
'is your ID.<br>' '<i>steamcommunity.com/profiles/<b>XXXXXXXXXXXXXXXXX</b></i> is your ID.<br>'
'If your URL uses a custom name instead, look it up at ' 'Using a custom profile URL? Look it up at '
'<a href="https://steamid.io">steamid.io</a>.' '<a href="https://steamid.io">steamid.io</a>.'
) )
id_help.setOpenExternalLinks(True) id_help.setOpenExternalLinks(True)