From 8e65bad9746221fc0f3596471a2d452b9ef79fb3 Mon Sep 17 00:00:00 2001 From: Akshay Arora Date: Wed, 27 Jan 2016 04:06:20 +0530 Subject: [PATCH] improved font_hinting defaults --- kivy/uix/label.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kivy/uix/label.py b/kivy/uix/label.py index 4b717079e..c3aed9a93 100644 --- a/kivy/uix/label.py +++ b/kivy/uix/label.py @@ -815,7 +815,7 @@ class Label(Widget): ''' font_hinting = OptionProperty( - 'none', options=['normal', 'light', 'mono', 'none']) + 'normal', options=['normal', 'light', 'mono', 'none']) '''What hinting option to use for font rendering. Can be `'normal'`, `'light'`, `'mono'`, `'none'` @@ -825,10 +825,10 @@ class Label(Widget): .. versionadded:: 1.9.2 :attr:`font_hinting` is an :class:`~kivy.properties.OptionProperty` and - defaults to `'none'`. + defaults to `'normal'`. ''' - font_kerning = BooleanProperty(False) + font_kerning = BooleanProperty(True) '''Whether kerning is enable for font rendering .. note:: @@ -837,10 +837,10 @@ class Label(Widget): .. versionadded:: 1.9.2 :attr:`font_kerning` is a :class:`~kivy.properties.BooleanProperty` and - defaults to False. + defaults to True. ''' - font_blended = BooleanProperty(False) + font_blended = BooleanProperty(True) '''Whether blended or solid font rendering should be used .. note:: @@ -849,5 +849,5 @@ class Label(Widget): .. versionadded:: 1.9.2 :attr:`font_blended` is a :class:`~kivy.properties.BooleanProperty` and - defaults to False. + defaults to True. '''