Index: Core/Common/src/Core.Common.Gui/GuiCommandHandler.cs =================================================================== diff -u -r468ee58c212f14704baa1992fe906da456448ff5 -r41ec10196cf2cb43e09ff4eac08a116ee61f2c14 --- Core/Common/src/Core.Common.Gui/GuiCommandHandler.cs (.../GuiCommandHandler.cs) (revision 468ee58c212f14704baa1992fe906da456448ff5) +++ Core/Common/src/Core.Common.Gui/GuiCommandHandler.cs (.../GuiCommandHandler.cs) (revision 41ec10196cf2cb43e09ff4eac08a116ee61f2c14) @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; +using System.IO; using System.Linq; using System.Windows.Forms; using System.Windows.Forms.Integration; @@ -118,6 +119,7 @@ gui.ProjectFilePath = filePath; gui.Project = loadedProject; + gui.Project.Name = Path.GetFileNameWithoutExtension(filePath); RefreshGui(); Log.Info(Resources.Project_existing_successfully_opened); @@ -203,6 +205,7 @@ // Save was successful, store location gui.ProjectFilePath = filePath; + project.Name = Path.GetFileNameWithoutExtension(filePath); Log.Info(Resources.Project_saving_project_saved); return true; }