From 434e4f8e0b7fc98d289559323faa6b60e2b80692 Mon Sep 17 00:00:00 2001 From: Mollusk Date: Thu, 2 Apr 2026 07:35:34 -0400 Subject: [PATCH] Clarify Steam ID field expects number only, not full URL --- steam_dice.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)