Fixed bug with moving tables

This commit is contained in:
Matthew Welch 2021-01-17 17:30:46 -08:00
parent 4ec53eb4b9
commit a27c3695a9
2 changed files with 3 additions and 5 deletions

View File

@ -135,10 +135,8 @@ function createEditorWindow(json) {
function createNew() {
let old_window = BrowserWindow.getFocusedWindow();
let main_window = createEditorWindow();
main_window.once("ready-to-show", () => {
main_window.webContents.send("open-default");
})
let json = loadJson(path.join(app.getAppPath(), "src/default.json"));
let main_window = createEditorWindow(json);
old_window.close();
}

View File

@ -741,7 +741,7 @@ function enableMovement() {
animation: 50,
easing: "cubic-bezier(1, 0, 0, 1)",
draggable: ".table-nav",
onend: function (event) {
onEnd: function (event) {
moveTable(event.oldIndex, event.newIndex);
}
})