mirror of
https://github.com/markqvist/Sideband.git
synced 2025-12-15 08:38:47 -05:00
Enable icon display by default
This commit is contained in:
parent
9e992c83fd
commit
afac322859
3 changed files with 7 additions and 5 deletions
|
|
@ -81,7 +81,7 @@ class Utilities():
|
|||
output = buffer.getvalue()
|
||||
|
||||
def cb(dt):
|
||||
self.rnstatus_screen.ids.rnstatus_output.text = f"[font=RobotoMono-Regular]{output}[/font]"
|
||||
self.rnstatus_screen.ids.rnstatus_output.text = f"[font=RobotoMono-Regular][size={int(dp(12))}]{output}[/size][/font]"
|
||||
Clock.schedule_once(cb, 0.2)
|
||||
|
||||
if self.app.root.ids.screen_manager.current == "rnstatus_screen":
|
||||
|
|
@ -114,7 +114,7 @@ class Utilities():
|
|||
|
||||
self.logviewer_screen.log_contents = output
|
||||
def cb(dt):
|
||||
self.logviewer_screen.ids.logviewer_output.text = f"[font=RobotoMono-Regular]{output}[/font]"
|
||||
self.logviewer_screen.ids.logviewer_output.text = f"[font=RobotoMono-Regular][size={int(dp(12))}]{output}[/size][/font]"
|
||||
Clock.schedule_once(cb, 0.2)
|
||||
|
||||
if self.app.root.ids.screen_manager.current == "logviewer_screen":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue