summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-04-01 19:38:30 +0300
committerMavridis Philippe <mavridisf@gmail.com>2021-04-01 19:38:30 +0300
commitd5aa6dae8a334696f6e833de8d0dc5e13043c2c8 (patch)
treed15addb5b4561656884d30917bdeb199505b3837
parent47c761a5f0d9c8b39ddb189d3152907f8da6d5a4 (diff)
downloadkompose-d5aa6dae8a334696f6e833de8d0dc5e13043c2c8.tar.gz
kompose-d5aa6dae8a334696f6e833de8d0dc5e13043c2c8.zip
Background blur: added warning about performance issue.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
-rw-r--r--src/komposepreferences.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/komposepreferences.cpp b/src/komposepreferences.cpp
index 9adf4eb..33fc4d8 100644
--- a/src/komposepreferences.cpp
+++ b/src/komposepreferences.cpp
@@ -169,7 +169,7 @@ KomposePreferences::KomposePreferences()
page2Layout->addWidget(imageEffects);
blurBackground = new TQCheckBox(i18n("Blur desktop background"), page2);
- TQString blurBackgroundHelp = i18n("Apply a Gaussian blur to the desktop background.");
+ TQString blurBackgroundHelp = i18n("Apply a Gaussian blur to the desktop background.\nMight make your machine considerably slower.");
TQWhatsThis::add( blurBackground, blurBackgroundHelp );
TQToolTip::add( blurBackground, blurBackgroundHelp );
page2Layout->addWidget(blurBackground);