diff --git a/editions/free/src/css/librarymodal.css b/editions/free/src/css/librarymodal.css index 6dbf6f7..7850f3d 100644 --- a/editions/free/src/css/librarymodal.css +++ b/editions/free/src/css/librarymodal.css @@ -145,6 +145,8 @@ Assets chooser margin: ${css_vh(0.00)}; margin-left: auto; margin-right: auto; + height: ${css_vh(88.28)}; + overflow-y: scroll; } *.scrollarea{ diff --git a/ios/ScratchJr/src/ViewController.m b/ios/ScratchJr/src/ViewController.m index 721fd28..064f226 100644 --- a/ios/ScratchJr/src/ViewController.m +++ b/ios/ScratchJr/src/ViewController.m @@ -28,6 +28,11 @@ JSContext *js; [super viewDidLoad]; [self registerDefaultsFromSettingsBundle]; webview = (UIWebView*)[self view] ; + + // disable webview scroll + // to fix https://github.com/LLK/scratchjr/issues/243 + webview.scrollView.scrollEnabled = false; + [webview setDelegate:self]; [Database open:@"ScratchJr"]; [ScratchJr cameraInit];