Skip to content

Commit 91ba436

Browse files
committed
Apertus v0.3.15-beta
FIX: bug when clicking on browser open button if their is no webpage being browsed.
1 parent ea60c46 commit 91ba436

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ADD/About.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ADD/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4457,7 +4457,7 @@ private void imgOptionsOpen_Click(object sender, EventArgs e)
44574457

44584458
private void imgOpenInBrowserButton_Click(object sender, EventArgs e)
44594459
{
4460-
if (webBrowser1.Url.ToString() != null)
4460+
if (webBrowser1.Url != null)
44614461
{
44624462
Process.Start(webBrowser1.Url.ToString());
44634463
}

ADD/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.3.14")]
35+
[assembly: AssemblyVersion("0.3.15")]

0 commit comments

Comments
 (0)