Skip to content

Commit

Permalink
Move save status to the top of window
Browse files Browse the repository at this point in the history
  • Loading branch information
maiko3tattun committed Mar 24, 2024
1 parent 8597a98 commit eab0d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenUtau/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class MainWindowViewModel : ViewModelBase, ICmdSubscriber {
public bool ExtendToFrame => OS.IsMacOS();
public string Title => !ProjectSaved
? $"{AppVersion}"
: $"{AppVersion} [{DocManager.Inst.Project.FilePath}{(DocManager.Inst.ChangesSaved ? "" : "*")}]";
: $"{(DocManager.Inst.ChangesSaved ? "" : "*")}{AppVersion} [{DocManager.Inst.Project.FilePath}]";
[Reactive] public PlaybackViewModel PlaybackViewModel { get; set; }
[Reactive] public TracksViewModel TracksViewModel { get; set; }
[Reactive] public ReactiveCommand<string, Unit>? OpenRecentCommand { get; private set; }
Expand Down

0 comments on commit eab0d7b

Please sign in to comment.