Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update ShellViewModel.cs
Remove WindowTitle attribute. Since it is never used.
The real used one is MainViewModel.WindowTitle.
  • Loading branch information
pgg3 authored Aug 13, 2025
commit df8ce6a80fa1bacd44d9708e7fe65659136d2ff6
13 changes: 2 additions & 11 deletions win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,16 +156,6 @@ public bool IsMainPanelEnabled
}
}

/// <summary>
/// Gets WindowTitle.
/// </summary>
public string WindowTitle
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is used. You shouldn't remove it.

{
get
{
return "HandBrake";
}
}

#endregion

Expand Down Expand Up @@ -216,4 +206,5 @@ public bool CanClose()
return true;
}
}
}

}