mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-30 03:25:47 -05:00
Typo fix
This commit is contained in:
parent
038d258233
commit
6f846751c7
1 changed files with 2 additions and 2 deletions
|
@ -374,11 +374,11 @@ class ChartEditorToolboxHandler
|
||||||
var difficultyToolboxLoadChart:Button = toolbox.findComponent('difficultyToolboxLoadChart', Button);
|
var difficultyToolboxLoadChart:Button = toolbox.findComponent('difficultyToolboxLoadChart', Button);
|
||||||
|
|
||||||
difficultyToolboxSaveMetadata.onClick = function(event:UIEvent) {
|
difficultyToolboxSaveMetadata.onClick = function(event:UIEvent) {
|
||||||
SongSerializer.exportSongMetadata(state.currentSongMetadata, state);
|
SongSerializer.exportSongMetadata(state.currentSongMetadata, state.currentSongId);
|
||||||
};
|
};
|
||||||
|
|
||||||
difficultyToolboxSaveChart.onClick = function(event:UIEvent) {
|
difficultyToolboxSaveChart.onClick = function(event:UIEvent) {
|
||||||
SongSerializer.exportSongChartData(state.currentSongChartData, state);
|
SongSerializer.exportSongChartData(state.currentSongChartData, state.currentSongId);
|
||||||
};
|
};
|
||||||
|
|
||||||
difficultyToolboxSaveAll.onClick = function(event:UIEvent) {
|
difficultyToolboxSaveAll.onClick = function(event:UIEvent) {
|
||||||
|
|
Loading…
Reference in a new issue