# HG changeset patch # User Goffi # Date 1553070584 -3600 # Node ID a5dfc789eeaf9c204270eedb8f605f9a2b267737 # Parent 520fd0f502336053d32fb7afafa095e6ef9aaa4d widgets_handler: increased remove limit and min height/width: remove limit was too small on touch screen, making it difficult to close a widget diff -r 520fd0f50233 -r a5dfc789eeaf cagou/core/widgets_handler.py --- a/cagou/core/widgets_handler.py Mon Mar 11 20:27:25 2019 +0100 +++ b/cagou/core/widgets_handler.py Wed Mar 20 09:29:44 2019 +0100 @@ -32,8 +32,8 @@ from cagou.core.constants import Const as C -REMOVE_WID_LIMIT = dp(10) -MIN_WIDTH = MIN_HEIGHT = dp(50) +REMOVE_WID_LIMIT = dp(50) +MIN_WIDTH = MIN_HEIGHT = dp(70) class WHWrapper(BoxLayout):