aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qmlmanager.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 02c254257..790be68a9 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -128,7 +128,12 @@ static void showProgress(QString msg)
// show the git progress in the passive notification area
extern "C" int gitProgressCB(const char *text)
{
- showProgress(QString(text));
+ // regular users, during regular operation, likely really don't
+ // care at all about the git progress
+ if (verbose) {
+ showProgress(QString(text));
+ appendTextToLogStandalone(text);
+ }
// return 0 so that we don't end the download
return 0;
}