Skip to content

Commit

Permalink
Added FB page reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ruffk committed Apr 13, 2021
1 parent 8b88a54 commit 04fbe4d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 33 deletions.
46 changes: 36 additions & 10 deletions ZwiftActivityMonitor/forms/AboutForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 1 addition & 23 deletions ZwiftActivityMonitor/forms/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void btnOk_Click(object sender, EventArgs e)
this.Close();
}

private void linkProjectWebsite_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
private void Launch_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
var link = (LinkLabel)sender;
link.LinkVisited = true;
Expand All @@ -65,29 +65,7 @@ private void linkProjectWebsite_LinkClicked(object sender, LinkLabelLinkClickedE
Process.Start(psInfo);
}

private void linkLatestReleases_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
var link = (LinkLabel)sender;
link.LinkVisited = true;
ProcessStartInfo psInfo = new ProcessStartInfo
{
FileName = link.Text,
UseShellExecute = true
};
Process.Start(psInfo);
}

private void linkProjectSponsor_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
var link = (LinkLabel)sender;
link.LinkVisited = true;
ProcessStartInfo psInfo = new ProcessStartInfo
{
FileName = link.Text,
UseShellExecute = true
};
Process.Start(psInfo);
}
private void lblTitle_MouseDown(object sender, MouseEventArgs e)
{
m_offset.X = e.X;
Expand Down

0 comments on commit 04fbe4d

Please sign in to comment.