Skip to content

Commit

Permalink
Apertus v0.3.15-beta
Browse files Browse the repository at this point in the history
FIX: bug when clicking on browser open button if their is no webpage
being browsed.
  • Loading branch information
embiimob committed Oct 26, 2017
1 parent ea60c46 commit 91ba436
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ADD/About.Designer.cs

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

2 changes: 1 addition & 1 deletion ADD/Main.cs
Expand Up @@ -4457,7 +4457,7 @@ private void imgOptionsOpen_Click(object sender, EventArgs e)

private void imgOpenInBrowserButton_Click(object sender, EventArgs e)
{
if (webBrowser1.Url.ToString() != null)
if (webBrowser1.Url != null)
{
Process.Start(webBrowser1.Url.ToString());
}
Expand Down
2 changes: 1 addition & 1 deletion ADD/Properties/AssemblyInfo.cs
Expand Up @@ -32,4 +32,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.3.14")]
[assembly: AssemblyVersion("0.3.15")]

0 comments on commit 91ba436

Please sign in to comment.