Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 299 Bytes

bugs-and-to-do.md

File metadata and controls

23 lines (17 loc) · 299 Bytes

Known Bugs and To-Do List

Miscellaneous

  • Whatever else that's missing...

New (2021/12/31)

ipcRenderer.on('action', (event, arg) => {
  switch (arg) {
    case 'exiting':
      if (EditingMode) {
        quit();
      }

      break;
    default:
      break;
  }
});