kivy-garden / qrcode

Qrcode generator
MIT License
9 stars 5 forks source link

[WARNING] [Lang ] The file ...qrcode_widget.kv is loaded multiples times #14

Closed AndiEcker closed 3 years ago

AndiEcker commented 3 years ago

The second instantiation of a QRCodeWidget is displaying the following warning message in the kivy logs::

[WARNING] [Lang ] The file ...kivy_garden/qrcode/qrcode_widget.kv is loaded multiples times, you might have unwanted behaviors.

This is because the kv file get loaded via Builder.load_file() in the __init__ method of QRCodeWidget.

To fix it the Builder.load_file call has to be done at the module level (to be only executed once, on the first import of the module/widget).