From 0269fc36e637dbe772c7463e07fa1aa330d3382d Mon Sep 17 00:00:00 2001 From: Tom Tanner Date: Sun, 29 Mar 2015 18:01:56 +0100 Subject: If there are no Missing ESPs, say "None" rather than leaving an empty list. --- src/savegameinfowidgetgamebryo.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/savegameinfowidgetgamebryo.cpp b/src/savegameinfowidgetgamebryo.cpp index b87d3165..c97e5810 100644 --- a/src/savegameinfowidgetgamebryo.cpp +++ b/src/savegameinfowidgetgamebryo.cpp @@ -71,4 +71,10 @@ void SaveGameInfoWidgetGamebryo::setSave(const SaveGame *saveGame) dotDotLabel->setFont(contentFont); layout->addWidget(dotDotLabel); } + if (count == 0) { + QLabel *dotDotLabel = new QLabel(tr("None")); + dotDotLabel->setIndent(10); + dotDotLabel->setFont(contentFont); + layout->addWidget(dotDotLabel); + } } -- cgit v1.3.1