WebView: fix "Download link contents"

git-svn-id: svn://kolibrios.org@7987 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2020-05-26 09:44:26 +00:00
parent 7a7a049046
commit 2a42ab9c1f
2 changed files with 3 additions and 2 deletions

View File

@ -478,7 +478,8 @@ void ProcessEvent(dword id__)
return;
case DOWNLOAD_LINK_CONTENTS:
if (!downloader_opened) {
strcpy(#downloader_edit, GetAbsoluteActiveURL());
id__ = GetAbsoluteActiveURL();
strcpy(#downloader_edit, id__);
CreateThread(#Downloader,#downloader_stak+4092);
}
return;

View File

@ -1,4 +1,4 @@
char version[]="WebView 2.61";
char version[]="WebView 2.61b";
#ifdef LANG_RUS
char buidin_page_error[] = FROM "buidin_pages\\page_not_found_ru.htm""\0";