We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee1115 commit 30d276aCopy full SHA for 30d276a
kivy/uix/behaviors/button.py
@@ -108,14 +108,17 @@ class ButtonBehavior(object):
108
:attr:`min_state_time` is a float and defaults to 0.035.
109
'''
110
111
- always_release = BooleanProperty(True)
+ always_release = BooleanProperty(False)
112
'''This determines whether or not the widget fires an `on_release` event if
113
the touch_up is outside the widget.
114
115
.. versionadded:: 1.9.0
116
117
+ .. versionchanged:: 1.9.2
118
+ The default value is now False.
119
+
120
:attr:`always_release` is a :class:`~kivy.properties.BooleanProperty` and
- defaults to `True`.
121
+ defaults to `False`.
122
123
124
def __init__(self, **kwargs):
0 commit comments