Skip to content

Commit 489cf10

Browse files
committed
ButtonExts.cs additional fix
1 parent b5936d2 commit 489cf10

2 files changed

Lines changed: 15 additions & 6 deletions

File tree

.idea/.idea.CutCode/.idea/workspace.xml

Lines changed: 14 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CutCode.CrossPlatform/Helpers/ButtonExts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static void OpenUrl(string url)
3131
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
3232
{
3333
startInfo.FileName = "xdg-open";
34-
startInfo.Arguments = " " + url;
34+
startInfo.Arguments = url;
3535
Process.Start(startInfo);
3636
}
3737
else

0 commit comments

Comments
 (0)