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
When pressing reset, the state of checkboxes reverts to their defaults. That's annoying, and it would be better if they "remembered" their state across resets and sessions.
Implementation
During reset, store the state of each check and re-apply it when done. This can be entirely in-memory, within the same function in fact.
defreset(self):
#1. store check state#2. reset models#3. fetch data#4. populate models#5. apply check state
The text was updated successfully, but these errors were encountered:
Showing QML from another host would open a new session. I'd like check state to be remembered when you later come back to the previous host.
As an implementation tip on that, you can use on_client_changed call to determine who is connecting and then store the state relative the connecting port.
Goal
When pressing reset, the state of checkboxes reverts to their defaults. That's annoying, and it would be better if they "remembered" their state across resets and sessions.
Implementation
During reset, store the state of each check and re-apply it when done. This can be entirely in-memory, within the same function in fact.
The text was updated successfully, but these errors were encountered: