WebView 1.85: russification, new feature to search the web, allow to set background color of the text, add help page, more hotkeys

Pixie: better icon of audio button

git-svn-id: svn://kolibrios.org@7743 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2020-03-21 18:49:45 +00:00
parent ce732ebdd3
commit a1815a31ee
13 changed files with 162 additions and 53 deletions

View File

@@ -176,6 +176,7 @@ int check_is_the_url_absolute(dword _in)
if(!strncmp(_in,"mailto:",7)) return true;
if(!strncmp(_in,"tel:",4)) return true;
if(!strncmp(_in,"#",1)) return true;
if(!strncmp(_in,"WebView:",8)) return true;
if(check_is_the_adress_local(_in)) return true;
return false;
}