Skip to content

Instantly share code, notes, and snippets.

@quintopia
quintopia / draglabel.kv
Created March 11, 2017 20:08
A problem with DragBehavior
#:kivy 1.0.9
<DragLabel>:
# Define the properties for the DragLabel
drag_rectangle: self.x, self.y, self.width, self.height
drag_timeout: 10000000
drag_distance: 0
border_width: 2
font_size: "20dp"
text: ""
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.uix.scatter import Scatter
from kivy.core.window import Window
from kivy.uix.floatlayout import FloatLayout
Window.clearcolor = (1, 1, 1, 1)
class TextSquare(Widget):
pass