diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-29 00:55:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-29 00:55:02 +0300 |
commit | 8f5bec5eeba8f72691c4566575c548216ce1f961 (patch) | |
tree | 1131a55c0e7702f8d94445ca06d3f1dfc12f1131 /src | |
parent | 295bd10101a7f22f5418bd5ae4e48700ee4a10fd (diff) | |
download | mv-8f5bec5eeba8f72691c4566575c548216ce1f961.tar.gz mv-8f5bec5eeba8f72691c4566575c548216ce1f961.tar.bz2 mv-8f5bec5eeba8f72691c4566575c548216ce1f961.tar.xz mv-8f5bec5eeba8f72691c4566575c548216ce1f961.zip |
Add new 4 tips.
Also fix previous button in did you know window.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/didyouknowwindow.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/gui/didyouknowwindow.cpp b/src/gui/didyouknowwindow.cpp index ab8f5366f..f0e61536a 100644 --- a/src/gui/didyouknowwindow.cpp +++ b/src/gui/didyouknowwindow.cpp @@ -44,7 +44,7 @@ #include "debug.h" static const int minTip = 1; -static const int maxTip = 16; +static const int maxTip = 18; DidYouKnowWindow::DidYouKnowWindow(): Window(_("Did You Know?"), false, nullptr, "didyouknow.xml"), @@ -112,7 +112,13 @@ void DidYouKnowWindow::loadData(int num) { mBrowserBox->clearRows(); if (!num) - num = config.getIntValue("currentTip") + 1; + { + const int curTip = config.getIntValue("currentTip"); + if (curTip == 1) + num = maxTip; + else + num = curTip + 1; + } if (num < minTip || num > maxTip) num = minTip; |