From 58a143a9ea137f0e15cbd3ef209d6f03c39fcf4a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 17 Dec 2023 12:36:59 +0800 Subject: [PATCH] bugfix --- kivyblocks/blocksapp.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/kivyblocks/blocksapp.py b/kivyblocks/blocksapp.py index 3965f07..9fb1419 100755 --- a/kivyblocks/blocksapp.py +++ b/kivyblocks/blocksapp.py @@ -99,7 +99,6 @@ class BlocksApp(App): def build(self): tl = Label(text='test') self.font_size = tl.font_size - print('##################app_font_size=', self.font_size) config = getConfig() self.workers = Workers(maxworkers=config.maxworkers or 80) self.workers.start() @@ -132,12 +131,6 @@ class BlocksApp(App): return x return None - def realurl(self, url): - if url.startswith('https://') or url.startswith('http://'): - return url - config = getConfig() - return '%s%s' % (config.uihome, url) - def get_user_data_path(self): if platform == 'android': # Environment = autoclass('android.os.Environment')