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
Slot clicked() will be called twice, which is unexpected, but is not surprise - because of static nature of SHT in connect_i function. For solve this I replace static SHT sh to
But there is another problem if objects dynamically and repeatedly created, connected, emitted and destroyed: sh_hash would not be cleared and would be overfull sometime. That is why I changed connect_i function to:
Thanks for taking time to fix this issue, indeed the problem you have reported is a valid and serious one. I would be happy to have it fixed, so, in case you would open a pull request, I would be happy to have it merged back, and considering the amount of code you have wrote for this, I'd be happy to add you as a project developer too if you want this, using the motto: "more eyes see more!"!
Ok, I would open a pull request. And of course these changes must be reviewed and tested by someone else. I think there's no need for add me as a project developer - I'll plan to use miso in my projects and if there's another issues, then I'll be definitely let you know.
Hello!
Thanks for the useful nice little tool.
Consider the following example:
Slot clicked() will be called twice, which is unexpected, but is not surprise - because of static nature of SHT in connect_i function. For solve this I replace
static SHT sh
toBut there is another problem if objects dynamically and repeatedly created, connected, emitted and destroyed: sh_hash would not be cleared and would be overfull sometime. That is why I changed connect_i function to:
That's all.
The text was updated successfully, but these errors were encountered: