add https:// to texturl

This commit is contained in:
Jim Saxton
2016-04-15 15:23:08 -07:00
parent 576d42f4ca
commit e3863980fd
2 changed files with 2 additions and 1 deletions

View File

@@ -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 ) );
}

Binary file not shown.