commit 748b65674ec86fc3e3d4af4929c4544ab9dce98d
parent e63caf9573872fb0691bfdbea9c680bdd922b40b
Author: mcol <mcol@posteo.net>
Date: Sat, 29 Feb 2020 10:06:46 +0000
popup default padding should be 0, not None
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/qtools/__init__.py b/qtools/__init__.py
@@ -91,8 +91,8 @@ class Popup(configurable.Configurable):
('font', 'sans', 'Font used in notifications.'),
('fontsize', 14, 'Size of font.'),
('fontshadow', None, 'Color for text shadows, or None for no shadows.'),
- ('horizontal_padding', None, 'Padding at sides of text.'),
- ('vertical_padding', None, 'Padding at top and bottom of text.'),
+ ('horizontal_padding', 0, 'Padding at sides of text.'),
+ ('vertical_padding', 0, 'Padding at top and bottom of text.'),
('text_alignment', 'left', 'Text alignment: left, center or right.'),
('wrap', True, 'Whether to wrap text.'),
]