diff --git a/src/URLView.cpp b/src/URLView.cpp index fd6f7e7..5ea7ddd 100644 --- a/src/URLView.cpp +++ b/src/URLView.cpp @@ -1051,7 +1051,8 @@ bool URLView::IsFTPLink() { bool URLView::IsHTMLLink() { // Is this link an HTML or file link? return( (url->FindFirst( "http://" ) == 0 ) || - (url->FindFirst( "file://" ) == 0 ) ); + (url->FindFirst( "file://" ) == 0 ) || + (url->FindFirst( "https://" ) == 0 ) ); } diff --git a/src/YAB.rdef.rsrc b/src/YAB.rdef.rsrc index a1a2951..eedf689 100644 Binary files a/src/YAB.rdef.rsrc and b/src/YAB.rdef.rsrc differ