Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

5E OGL (and others) sheet is compressed and unusable

So I only just noticed this recently, as I havent ever played 5e on Roll20 yet, but the OGL, Shaped and Community sheets all have the same issue. They look like this: I often bring my sheets out onto my second monitor, and in every instance, they compress information to one side and become unusable. I have confirmed my zoom is at the default 100% in Chrome. I have disabled every extension, and I have cleared my cache to no avail. No other person in a game with me gets the same issue, and it occurs in all the major 5e sheets. I have only provided a link to one of them, as ultimately I believe it's all the same root issue. I assume my only next steps are a bug report, but I don't know how much help that's going to be, as I'm going to be asked for a log from Chrome, and this occurs in every browser I use  anyway.
I have now isolated and fixed the issue, if anyone wants to know what it was (so it can perhaps be fixed) it was the font Helvetica Nue causing it. I disabled it using the following Tampermonkey script, but this is obviously not a permanent fix. // ==UserScript== // @name &nbsp; &nbsp; &nbsp; &nbsp; Fix 5e sheet // @namespace &nbsp; &nbsp;<a href="http://tampermonkey.net/" rel="nofollow">http://tampermonkey.net/</a> // @version &nbsp; &nbsp; &nbsp;infinity.0.2 // @description &nbsp;TODO // @author &nbsp; &nbsp; &nbsp; You // @match &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://app.roll20.net/editor/*" rel="nofollow">https://app.roll20.net/editor/*</a> // @grant &nbsp; &nbsp; &nbsp; &nbsp;none // ==/UserScript== (function() { &nbsp; &nbsp; 'use strict'; &nbsp; &nbsp; document.querySelector("body").style.fontFamily = "Helvetica, Arial, sans-serif"; })();