Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Maiko committed Jan 23, 2025
1 parent 327fbae commit bd9a518
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion OpenUtau.Core/DocManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void SearchAllPlugins() {
UCommandGroup? undoGroup = null;
UCommandGroup? savedPoint = null;
UCommandGroup? autosavedPoint = null;
public bool Recovered { get; set; } = false;
public bool Recovered { get; set; } = false; // Flag to not overwrite backup file

public bool ChangesSaved {
get {
Expand Down
1 change: 0 additions & 1 deletion OpenUtau.Core/Util/Preferences.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ public class SerializablePreferences {
public bool LockUnselectedNotesVibrato = true;
public bool LockUnselectedNotesExpressions = true;
public bool VoicebankPublishUseIgnore = true;

public string VoicebankPublishIgnores = "#Adobe Audition\n*.pkf\n\n#UTAU Engines\n*.ctspec\n*.d4c\n*.dio\n*.frc\n*.frt\n#*.frq\n*.harvest\n*.lessaudio\n*.llsm\n*.mrq\n*.pitchtier\n*.pkf\n*.platinum\n*.pmk\n*.star\n*.uspec\n*.vs4ufrq\n\n#UTAU related tools\n$read\n*.setParam-Scache\n*.lbp\n*.lbp.caches/*\n\n#OpenUtau\nerrors.txt\n*.sc.npz";
public string RecoveryPath = string.Empty;
}
Expand Down
4 changes: 2 additions & 2 deletions OpenUtau/Views/MainWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public MainWindow() {
InitializeComponent();
Log.Information("Initialized main window component.");
DataContext = viewModel = new MainWindowViewModel();

viewModel.InitProject(this);
viewModel.AddTempoChangeCmd = ReactiveCommand.Create<int>(tick => AddTempoChange(tick));
viewModel.DelTempoChangeCmd = ReactiveCommand.Create<int>(tick => DelTempoChange(tick));
Expand Down Expand Up @@ -1363,4 +1363,4 @@ public void OnNext(UCommand cmd, bool isUndo) {
}
}
}
}
}

0 comments on commit bd9a518

Please sign in to comment.