diff --git a/steam_dice.py b/steam_dice.py index c029c15..4bbe052 100644 --- a/steam_dice.py +++ b/steam_dice.py @@ -236,14 +236,14 @@ class SettingsDialog(QDialog): # --- Steam ID --- layout.addWidget(QLabel("Steam ID (64-bit)")) 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) id_help = QLabel( - 'Your 17-digit Steam ID. To find it: open your Steam profile in a browser — ' - 'the number in the URL (steamcommunity.com/profiles/XXXXXXXXXXXXXXXXX) ' - 'is your ID.
' - 'If your URL uses a custom name instead, look it up at ' + 'Paste the 17-digit number only — not the full URL. ' + 'Find it by opening your Steam profile in a browser: the number in ' + 'steamcommunity.com/profiles/XXXXXXXXXXXXXXXXX is your ID.
' + 'Using a custom profile URL? Look it up at ' 'steamid.io.' ) id_help.setOpenExternalLinks(True)