Bug Report
Context
Managing LabelEntry widget (removing) then adding another LabelEntry widget with the same name as the one deleted
Expected Behaviour
Nothing special
Actual Behaviour
Duplicate Error
Any error messages produced by appJar
Duplicate widget
Sample code, demonstrating the issue
app = gui()
app.addLabelEntry("test")
app.removeEntry("test")
app.addLabelEntry("test")
app.go()
Remark
I've been able to make it work anyway by deleting "manually" the widget in the WidgetManager's dictionary with 'app.widgetManager.remove(2, "test")'
(2 being the Entry widget's ID)