Skip to content

Commit

Permalink
fixed #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Hefaistos68 committed Sep 5, 2023
1 parent 85fed79 commit b9c40f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions VSLXshared/DataModel/VsOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ public VsOptions()
sb.Append("\r\n");
}

if (sb.Length == 0)
return "None";

return sb.ToString();
}
}
Expand Down
2 changes: 1 addition & 1 deletion VSLauncherX/MainDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit b9c40f0

Please sign in to comment.