component control switches#1214
component control switches#1214PeterSurda merged 1 commit intoBitmessage:v0.6from f97ada87:opmode-switches
Conversation
| # queue which will never be handled by a UI. We should clear it to | ||
| # save memory. | ||
| if shared.thisapp.daemon: | ||
| if shared.thisapp.daemon or not state.enableGUI: # FIXME redundant? |
There was a problem hiding this comment.
Yes, maybe just if not state.enableGUI:
| return | ||
| logger.error("Got signal %i", signal) | ||
| if shared.thisapp.daemon: | ||
| if shared.thisapp.daemon or not state.enableGUI: # FIXME redundant? |
|
Thanks for the comments. There's an unlikely corner case that I can think of, and for this reason I left the redundancy in place. If If the consensus is that they're unnecessary clutter, I can clean them up within this PR. |
|
I'm really happy that there are now constructive debates and development is steadily progressing. This hasn't been the case for many years. Let me know how I can make it easier for you to contribute. I haven't had that much time for development in the last two months or so, as I'm focusing on having a solid and secure infrastructure. That may take another month or so, then I'll do more development again. |
|
Regarding |
This PR implements the component control switches discussed in the comments of PR #1149