WebView 1.48: support all site encodings (not only UTF8), use lib/menu.h, fix black screen after changing window size

git-svn-id: svn://kolibrios.org@6045 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2016-01-08 02:19:41 +00:00
parent 5f2eec40f1
commit 8181cb284f
5 changed files with 57 additions and 112 deletions

View File

@@ -8,7 +8,7 @@ ShowHistory()
history_pointer = malloc(history.items.data_size+256);
strcat(history_pointer, "<html><head><title>History</title></head><body><h1>History</h1>");
strcat(history_pointer, "<h2>Visited pages</h2><blockquote><br>");
for (i=1; i<history.items.count; i++)
for (i=0; i<history.items.count; i++)
{
strcat(history_pointer, " <a href='");
strcat(history_pointer, history.items.get(i));