Arlen22/tiddly-chrome-app

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.

  1. When viewing a large tiddler, the scrollbar on the right side is not shown. So I can't scroll.

image

  1. 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.

image

I'm experiencing the exact same issue on Chrome OS.

Although I have no expertise in this whatsoever, and I don't have any idea how far along you are in solving this, maybe this could help:
screenshot 2018-10-16 at 19 08 56
Maybe it was the new interface or the "CSS Scroll Snap" tripping up the application?

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.

See https://github.com/MircoBabin/TiddlyWikiWatcher.

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.