You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please consider adding the following code to the Kaki App.
This fixes a bug where kivy autoloads the {app}.kv file which falls out of scope and results in duplicate content being drawn.
The autoloaded UI can't be updated and will be drawn for the duration of the app lifecycle.
defload_kv(self, filename=None):
""" Don't autoload the appname .kv file when in debug mode due to the autoloaded .kv file being drawn but not bound to the code, resulting in stale pixels on the screen. """ifself.DEBUGisTrue:
returnFalsereturnsuper().load_kv(filename=filename)
The text was updated successfully, but these errors were encountered:
Please consider adding the following code to the Kaki App.
This fixes a bug where kivy autoloads the
{app}.kv
file which falls out of scope and results in duplicate content being drawn.The autoloaded UI can't be updated and will be drawn for the duration of the app lifecycle.
The text was updated successfully, but these errors were encountered: