Ported the old tab renaming code into main

Needs to be cleaned up
This commit is contained in:
Lars Brubaker 2022-01-21 15:21:07 -08:00
parent 035b84d065
commit b664670a42
47 changed files with 644 additions and 337 deletions

View file

@ -68,7 +68,9 @@ namespace MatterHackers.MatterControl.Library
public virtual bool LocalContentExists => File.Exists(CachePath);
public string Name
public event EventHandler NameChanged;
public string Name
{
get
{
@ -79,6 +81,11 @@ namespace MatterHackers.MatterControl.Library
return FileName;
}
set
{
// do nothing (can't rename)
}
}
public string Url { get; }