From a63246ff517377d9c8f861e3d4af046e5963c9ad Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 12 Sep 2023 00:25:05 -0400 Subject: [PATCH] Remove notification on snapping change. --- .../ui/debug/charting/ChartEditorState.hx | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/source/funkin/ui/debug/charting/ChartEditorState.hx b/source/funkin/ui/debug/charting/ChartEditorState.hx index 52468070d..ab9cc6808 100644 --- a/source/funkin/ui/debug/charting/ChartEditorState.hx +++ b/source/funkin/ui/debug/charting/ChartEditorState.hx @@ -2048,29 +2048,11 @@ class ChartEditorState extends HaxeUIState if (FlxG.keys.justPressed.LEFT) { noteSnapQuantIndex--; - #if !mac - NotificationManager.instance.addNotification( - { - title: 'Note Snapping', - body: 'Updated note snapping to 1/${noteSnapQuant}', - type: NotificationType.Success, - expiryMs: ChartEditorState.NOTIFICATION_DISMISS_TIME - }); - #end } if (FlxG.keys.justPressed.RIGHT) { noteSnapQuantIndex++; - #if !mac - NotificationManager.instance.addNotification( - { - title: 'Note Snapping', - body: 'Updated note snapping to 1/${noteSnapQuant}', - type: NotificationType.Success, - expiryMs: ChartEditorState.NOTIFICATION_DISMISS_TIME - }); - #end } }