diff --git a/frontend/src/common/command/concrete/ModifyEffectCommand.ts b/frontend/src/common/command/concrete/ModifyEffectCommand.ts index e10cd05..66e448c 100644 --- a/frontend/src/common/command/concrete/ModifyEffectCommand.ts +++ b/frontend/src/common/command/concrete/ModifyEffectCommand.ts @@ -31,18 +31,12 @@ class ModifyEffectCommand extends Command { } return effect; }) - console.log('this.effect', this.effect); - - console.log('newEffectList', newEffectList); - trackSection.effectList = [...newEffectList]; focus.trackSection = trackSection; } }) }); }) - console.log('newTrackList', newTrackList); - this.publishChannel(newTrackList); } diff --git a/frontend/src/components/EffectController/EffectContents/FadeInEffect/FadeInEffect.ts b/frontend/src/components/EffectController/EffectContents/FadeInEffect/FadeInEffect.ts index 2c40103..adbdab8 100644 --- a/frontend/src/components/EffectController/EffectContents/FadeInEffect/FadeInEffect.ts +++ b/frontend/src/components/EffectController/EffectContents/FadeInEffect/FadeInEffect.ts @@ -33,8 +33,6 @@ import { Controller } from "@controllers"; inputFadeInLengthListener = (e) => { const { target } = e; - console.log(target.value); - if (!this.fadeInLengthValueElement) return; this.fadeInLengthValueElement.innerText = `${target.value}`; } diff --git a/frontend/src/components/Main/MainControllerContent/AudioTrackMenu/AudioTrackMenu.ts b/frontend/src/components/Main/MainControllerContent/AudioTrackMenu/AudioTrackMenu.ts index c0b666e..af694b3 100644 --- a/frontend/src/components/Main/MainControllerContent/AudioTrackMenu/AudioTrackMenu.ts +++ b/frontend/src/components/Main/MainControllerContent/AudioTrackMenu/AudioTrackMenu.ts @@ -146,6 +146,7 @@ import './AudioTrackMenu.scss'; try { const currentZoomRate = ZoomController.getCurrentRate(); if (currentZoomRate < 3.5) { + Controller.changeCurrentScrollAmount(0); ZoomController.setZoomRate(currentZoomRate + 0.25); } } catch (e) { @@ -157,6 +158,7 @@ import './AudioTrackMenu.scss'; try { const currentZoomRate = ZoomController.getCurrentRate(); if (currentZoomRate > 1) { + Controller.changeCurrentScrollAmount(0); Controller.changeMaxTrackWidth(0); ZoomController.setZoomRate(currentZoomRate - 0.25); } diff --git a/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectList/SectionEffectList.ts b/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectList/SectionEffectList.ts index dd85a65..72d1164 100644 --- a/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectList/SectionEffectList.ts +++ b/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectList/SectionEffectList.ts @@ -93,9 +93,7 @@ import { storeChannel } from '@store'; if (focusList.length !== 1) { return ``; } - const trackSection = focusList[0].trackSection; - console.log(trackSection); return focusList[0].trackSection.effectList.reduce( (acc, effect) => diff --git a/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectSetting/SectionEffectSetting.ts b/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectSetting/SectionEffectSetting.ts index 0654dbd..a9dc17b 100644 --- a/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectSetting/SectionEffectSetting.ts +++ b/frontend/src/components/Sidebar/SidebarListInfo/SectionEffectSetting/SectionEffectSetting.ts @@ -169,14 +169,9 @@ import './SectionEffectSetting.scss'; if (!fadeInLengthElement) return; const fadeInLength = Number(fadeInLengthElement.innerText); - const effectProperties = new FadeInProperties({ fadeInLength: fadeInLength }); - console.log(effectProperties, '이상한가봐'); - const newEffect = new Effect({ name: this.effectType, properties: effectProperties }); - console.log(newEffect); - this.updateEffectList(newEffect); }