Scrolling does not work, after Google Chrome update
Closed this issue · 7 comments
Today Google Chrome was updated. And now the scrollbar is behaving really strangely in the app. If I load the wiki.html inside the normal chrome browser everything works ok.
- When viewing a large tiddler, the scrollbar on the right side is not shown. So I can't scroll.
- When editting a large tiddler, there is no scrolling mechanism. You can CURSOR down in the tiddler, but then the head where you can press save etc. gets out of view.
I installed Tiddly Chrome yesterday, wanting to get back to using TiddlyWiki. I have the same issue. Chrome 70.0.3538.77 (Official Build) (64-bit), Windows 10. No scroll bar, mouse scroll wheel does not work.
Because this issue is blocking for me, I decided to create a new application. This application watches the Tiddly Wiki being saved and then moves the downloaded Tiddly Wiki to the original filename.
My workaround:
replace this string in tiddlywiki.html file
\n\ttext-rendering: optimizeLegibility;
with
\n\ttext-rendering: optimizeLegibility;\n\toverflow: auto;
now scrolling is restored.
If you want to use text selection too replace this
body.tc-body {\n\tfont-size:
with
body.tc-body {\n\tuser-select: text;\n\tcursor: auto;\n\tfont-size:
Thank you for your input. I've solved the problem now I think. I will publish a release soon but I've already updated the source code.