fix: activate themes on desktop

This commit is contained in:
Baptiste Grob
2020-09-28 12:07:13 +02:00
parent 4ae680e936
commit 92b223d35a
4 changed files with 4 additions and 25 deletions

View File

@@ -21,7 +21,6 @@ export enum AppStateEvent {
EditorFocused = 5,
BeganBackupDownload = 6,
EndedBackupDownload = 7,
DesktopExtsReady = 8,
WindowDidFocus = 9,
WindowDidBlur = 10,
};
@@ -309,13 +308,4 @@ export class AppState {
{ success: success }
);
}
/**
* When the desktop appplication extension server is ready.
*/
desktopExtensionsReady() {
this.notifyEvent(
AppStateEvent.DesktopExtsReady
);
}
}