From af5c27a565c8b8110ed4869474dc3553a722d1d0 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Thu, 31 Oct 2019 19:11:58 +0100 Subject: [PATCH] Removed unnecessary console.log statements. --- src/quest_editor/gui/EventsView.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/quest_editor/gui/EventsView.ts b/src/quest_editor/gui/EventsView.ts index 86657ea6..43b21d25 100644 --- a/src/quest_editor/gui/EventsView.ts +++ b/src/quest_editor/gui/EventsView.ts @@ -114,7 +114,6 @@ export class EventsView extends ResizableWidget { break; } - console.log(`${event.id} -> ${child.id}`, low_pos, high_pos, `depth: ${depth}`); for (let i = low_pos; i < high_pos; i++) { used_depths[i][depth] = true; @@ -133,7 +132,6 @@ export class EventsView extends ResizableWidget { } } - console.log(used_depths); element.style.marginLeft = `${SPACING * max_depth}px`; });