do not clear the namespace on every page / data send

pull/2814/head
Aditya Mehra 2021-01-21 17:33:53 +05:30
parent 1a179dacab
commit 0cbf36cd8e
1 changed files with 0 additions and 5 deletions

View File

@ -259,7 +259,6 @@ class SkillGUI:
True: Disables showing all platform skill animations.
False: 'Default' always show animations.
"""
self.clear()
self["text"] = text
self["title"] = title
self.show_page("SYSTEM_TextFrame.qml", override_idle,
@ -284,7 +283,6 @@ class SkillGUI:
True: Disables showing all platform skill animations.
False: 'Default' always show animations.
"""
self.clear()
self["image"] = url
self["title"] = title
self["caption"] = caption
@ -311,7 +309,6 @@ class SkillGUI:
True: Disables showing all platform skill animations.
False: 'Default' always show animations.
"""
self.clear()
self["image"] = url
self["title"] = title
self["caption"] = caption
@ -334,7 +331,6 @@ class SkillGUI:
True: Disables showing all platform skill animations.
False: 'Default' always show animations.
"""
self.clear()
self["html"] = html
self["resourceLocation"] = resource_url
self.show_page("SYSTEM_HtmlFrame.qml", override_idle,
@ -354,7 +350,6 @@ class SkillGUI:
True: Disables showing all platform skill animations.
False: 'Default' always show animations.
"""
self.clear()
self["url"] = url
self.show_page("SYSTEM_UrlFrame.qml", override_idle,
override_animations)