The "viewport" hinting we used to try to better fit messages by default

made android zooming incredibly unreliable. Now it's only somewhat
unreliable.
This commit is contained in:
Jesse Vincent 2010-10-23 18:50:10 +00:00
parent 4b9d4b677a
commit 983d7ad48f
1 changed files with 1 additions and 1 deletions

View File

@ -2485,7 +2485,7 @@ public class LocalStore extends Store implements Serializable
Matcher m = Regex.WEB_URL_PATTERN.matcher(text);
StringBuffer sb = new StringBuffer(text.length() + 512);
sb.append("<html><head><meta name=\"viewport\" content=\"width=device-width, height=device-height\"></head><body>");
sb.append("<html><head></head><body>");
sb.append(htmlifyMessageHeader());
while (m.find())
{