Skip to content

Commit

Permalink
Fix unable to remove from send to
Browse files Browse the repository at this point in the history
  • Loading branch information
Fidifis committed Nov 5, 2022
1 parent 66635f3 commit 8326330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TextureMerge/Settings.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private void DeleteFromSendTo()
try
{
string sendtoPath = Environment.GetFolderPath(Environment.SpecialFolder.SendTo);
string filelnk = sendtoPath + "Texture Merge.lnk";
string filelnk = sendtoPath + "\\Texture Merge.lnk";
if (File.Exists(filelnk))
File.Delete(filelnk);
else
Expand Down

0 comments on commit 8326330

Please sign in to comment.