Change title of DocumentViewerWindow

This commit is contained in:
2023-04-16 00:26:21 +02:00
parent 9e6726ba05
commit e62126a83e
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ namespace Elwig.Windows {
public DocumentViewerWindow(string title, string path) {
InitializeComponent();
Title = Title + " - " + title;
Title = $"{title} - {Title}";
WebView.Source = new($"file://{path}#view=FitH");
}