diff options
author | 2022-05-07 20:44:44 +0530 | |
---|---|---|
committer | 2022-05-07 20:44:44 +0530 | |
commit | cc43d4c77b66795b88fe0ff24f103ce111d052e8 (patch) | |
tree | 590942b2cacc56c41d23cd8ed3f3d31b640866c5 /src | |
parent | 4a968554092182d1e91b381dcfe61f9e93345326 (diff) | |
download | whatsie-cc43d4c77b66795b88fe0ff24f103ce111d052e8.tar.gz whatsie-cc43d4c77b66795b88fe0ff24f103ce111d052e8.zip |
chore: stop timer instantly if rated already
Diffstat (limited to 'src')
-rw-r--r-- | src/rateapp.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rateapp.cpp b/src/rateapp.cpp index 430716d..5c370a9 100644 --- a/src/rateapp.cpp +++ b/src/rateapp.cpp @@ -43,6 +43,7 @@ RateApp::RateApp(QWidget *parent, QString app_rating_url, int app_launch_count, showTimer->start(); } else { // if shouldshow is false, delete this obj to free resources + showTimer->stop(); this->deleteLater(); } } |