From 8d97c9dd3002c8bed024d9b271082e1460651bd6 Mon Sep 17 00:00:00 2001 From: leminlimez <59540996+leminlimez@users.noreply.github.com> Date: Sun, 23 Mar 2025 15:29:04 -0400 Subject: [PATCH] update message on help menu --- gui/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/dialogs.py b/gui/dialogs.py index fc54fbc..eb71d6c 100644 --- a/gui/dialogs.py +++ b/gui/dialogs.py @@ -44,7 +44,7 @@ class PBHelpDialog(QDialog): self.setWindowTitle("PosterBoard Info") layout = QVBoxLayout() - message = QLabel("Descriptors will be under the Collections section when adding a new wallpaper.") + message = QLabel("Descriptors will be under the Collections section when adding a new wallpaper.\n\nIf the wallpapers don't appear in the menu, you either have to wait a bit for them to load,\nor you've reached the maximum amount of wallpapers (15) and have to wipe them.") layout.addWidget(message) imgBox = QWidget()