From 1848b268b78221048b52ac2d395789d085d746ef Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Wed, 25 Jan 2012 18:40:48 +0100 Subject: [PATCH] textinput: fix active/inactive default style (bad renaming when introduced atlas) --- kivy/data/style.kv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/data/style.kv b/kivy/data/style.kv index 71748ba70..3a7976a0c 100644 --- a/kivy/data/style.kv +++ b/kivy/data/style.kv @@ -98,7 +98,7 @@ border: (16, 16, 16, 16) pos: self.pos size: self.size - source: 'atlas://data/images/defaulttheme/textinput%s' % ('_active' if not self.focus else '') + source: 'atlas://data/images/defaulttheme/textinput%s' % ('_active' if self.focus else '') Color: rgba: (1, 0, 0, 1 if self.focus and not self.cursor_blink else 0) Rectangle: