From: Christophe CURIS <[email protected]>
Do not worry the user with a warning if he did not enable the feature
---
src/defaults.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/defaults.c b/src/defaults.c
index 1310399..fff239f 100644
--- a/src/defaults.c
+++ b/src/defaults.c
@@ -1190,8 +1190,9 @@ void wReadDefaults(WScreen * scr, WMPropList * new_dict)
if (wPreferences.apercu_size < 24) {
/* 24 is the minimum icon size proposed in WPref's settings */
wPreferences.apercu_size *= wPreferences.icon_size;
- wwarning(_("your ApercuSize setting is using old syntax, it is
converted to %d pixels; consider running WPrefs.app to update your settings"),
- wPreferences.apercu_size);
+ if (wPreferences.miniwin_apercu_balloon)
+ wwarning(_("your ApercuSize setting is using old
syntax, it is converted to %d pixels; consider running WPrefs.app to update
your settings"),
+ wPreferences.apercu_size);
}
if (needs_refresh != 0 && !scr->flags.startup) {
--
2.1.1
--
To unsubscribe, send mail to [email protected].