We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbb142d commit a4a63eeCopy full SHA for a4a63ee
AniView/Windows/MainWindow.xaml.cs
@@ -140,6 +140,9 @@ internal void LoadSettings()
140
_autoSizeWindow = Properties.Settings.Default.AutoSizeWindow;
141
_showFileTitle = Properties.Settings.Default.ShowFileTitle;
142
143
+ if (!_showFileTitle) Title = "AniView";
144
+ if (_showFileTitle && !string.IsNullOrEmpty(_currentPath)) Title = "AniView - " + _currentPath;
145
+
146
if (Properties.Settings.Default.WindowDragging)
147
{
148
// Prevent duplicate handlers
0 commit comments