You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// streamer mode, show first char and last 3 chars, rest as *
1079
+
var cleantitle = proj.Title[0] + new string('*', proj.Title.Length - 1);
1080
+
var title = chkStreamerMode.IsChecked == true ? cleantitle : proj.Title;
1081
+
var result = MessageBox.Show("Are you sure you want to remove project from list?\n\n" + title, "Remove project", MessageBoxButton.YesNo, MessageBoxImage.Question);
1082
+
if (result == MessageBoxResult.No) return;
1083
+
}
1084
+
1085
+
if (GetProjects.RemoveRecentProject(proj.Path))
1086
+
{
1087
+
RefreshRecentProjects();
1088
+
}
1089
+
else
1090
+
{
1091
+
// we had added this project manually, without opening yet, just remove item
0 commit comments