Fixed a regression with menus not set to radio buttons and then not unsetting other menu buttons

This commit is contained in:
Lars Brubaker 2022-10-28 17:05:55 -07:00
parent dc1deb2938
commit cba9437ffa
3 changed files with 28 additions and 11 deletions

View file

@ -28,6 +28,7 @@ either expressed or implied, of the FreeBSD Project.
*/
using MatterHackers.Agg;
using MatterHackers.Localizations;
using System;
using System.IO;
using System.Text.RegularExpressions;
@ -88,7 +89,20 @@ namespace MatterHackers.MatterControl.Library
{
get
{
return Path.GetFileName(this.FilePath);
var finalDirectory = Path.GetFileName(this.FilePath);
if (string.IsNullOrEmpty(finalDirectory))
{
if (FilePath.Length > 0)
{
return $"{FilePath[0]} " + "Drive".Localize();
}
else
{
return "Unknown".Localize();
}
}
return finalDirectory;
}
set