This commit is contained in:
yumoqing 2022-02-20 17:40:23 +08:00
parent 1d4adac3a3
commit e790f22d87
2 changed files with 5 additions and 2 deletions

View File

@ -158,9 +158,12 @@ class Text(Label):
ps = self.parent.padding
self.width = self.parent.width - ps[0] - ps[2]
if self.width > 0:
self.set_widget_height()
def set_widget_height(self, *args):
if self.width == 0:
return
self.text_size = self.width, None
rows = len(self.text) * (self.font_size * 0.621) / self.width
rows = math.ceil(rows)

View File

@ -12,7 +12,7 @@ from Cython.Build import cythonize
# python setup.py bdist_egg generate a egg file
# Release information about eway
version = "0.1.3"
version = "0.1.4"
description = "kivy blocks is a tool to build kivy ui with json format uidesc files"
author = "yumoqing"
email = "yumoqing@icloud.com"