diff --git a/VSLXshared/DataModel/VsOptions.cs b/VSLXshared/DataModel/VsOptions.cs index d59ea35..a2ca13d 100644 --- a/VSLXshared/DataModel/VsOptions.cs +++ b/VSLXshared/DataModel/VsOptions.cs @@ -69,6 +69,9 @@ public VsOptions() sb.Append("\r\n"); } + if (sb.Length == 0) + return "None"; + return sb.ToString(); } } diff --git a/VSLauncherX/MainDialog.cs b/VSLauncherX/MainDialog.cs index 7ded242..67c1153 100644 --- a/VSLauncherX/MainDialog.cs +++ b/VSLauncherX/MainDialog.cs @@ -138,7 +138,7 @@ private void InitializeListview() // setup the Options column this.olvColumnOptions.AspectGetter = ColumnHelper.GetAspectForOptions; - this.olvColumnOptions.ToolTipText = "*******"; + this.olvColumnOptions.ToolTipText = ""; // Show the attributes for this object A FlagRenderer masks off various values and draws zero or more images // based on the presence of individual bits.