Add View -> Debug Log to menu bar
Just send an event from the main process to the renderer, The latter routes it the appropriate view method. For now it's a no-op unless the main window exists and it is showing the inbox, which will be addressed in a future commit. // FREEBIE
This commit is contained in:
parent
8243f25e5a
commit
04e40043d2
4 changed files with 21 additions and 0 deletions
|
@ -78,6 +78,9 @@
|
|||
appView.openInstaller();
|
||||
}
|
||||
|
||||
Whisper.events.on('showDebugLog', function() {
|
||||
appView.inboxView.showDebugLog();
|
||||
});
|
||||
Whisper.events.on('unauthorized', function() {
|
||||
appView.inboxView.networkStatusView.update();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue