**** BEGIN LOGGING AT Sat Jan 19 02:59:59 2013 Jan 19 16:19:17 <_minego> Has anyone else had issues with hardware acceleration on android? When I have acceleration turned on my onyx.Scrim goes black. Jan 19 16:50:56 so i love a FittableRowsLayout with three rows, one is a toolbar at the bottom. The other two flip between hidden and showing state. When I hide one/show the other the toolbar doesn't redraw in the proper place, but when i resize the browser it figures it out properly... Jan 19 16:51:32 what's the best way to emulate the browser size adjustment? what method do i need to call on which DOM node? Jan 19 16:51:38 <_minego> hjhart: I had a similar issue. You can force a control to redraw in some cases by calling it's .resized() method Jan 19 16:52:20 Ah! Nice. That feels slightly like a hack to me, but maybe I'm wrong. is it normal in an enyo app to do that? Jan 19 16:52:58 <_minego> Well I suppose it is a bit of a hack, but it works... Jan 19 16:53:21 <_minego> The reality is that some controls handle a resize properly, and you are resizing that control, but not in a way that sends the normal event Jan 19 16:53:42 <_minego> There may be a more "correct" way of doing it, but I stopped looking after I got it working :) Jan 19 16:54:41 Cool, thats the method I was looking for. Unfortunately it's not working immediately. I'll keep tweaking with it though. Jan 19 16:54:45 Thanks _minego! Jan 19 17:00:44 <_minego> hjhart: np, good luck Jan 19 17:01:01 Got it. :) Jan 19 18:05:15 <_minego> Well, I found a work around for the scrim on android... I just created my own scrim which uses a transparent image on android. I have no idea why setting opacity on a black div for a scrim is causing only part of it to be transparent for me. Very very weird. Jan 19 18:48:12 <_minego> Well this is interesting... Jan 19 18:48:31 <_minego> I'm trying to track down scrolling issues that I'm having on webOS phones (and to a much lesser degree on android...) Jan 19 18:49:01 <_minego> So I overrode dispatchEvent() in my kind so I could print the events happening... Jan 19 18:49:41 <_minego> When the problem happens (on android, it is too slow to debug this way on webOS) I get a hold event, and then a holdpule event that repeats... Jan 19 18:49:58 <_minego> and here is the fun part... the holdpulse event keeps going after I remove my finger from the screen Jan 19 18:50:13 <_minego> If I touch again sometimes it stops it... sometimes I seem to have to flick. Jan 19 19:27:12 <_minego> Okay I figured out a bit more Jan 19 19:27:37 <_minego> Step 1) Scroll kinda fast so the scrolling continues when you live your finger Jan 19 19:27:59 <_minego> Step 2) Scroll again, and sometimes this scroll will appear to be ignored completely Jan 19 19:28:27 <_minego> It appears that the isScrolling() function in enyo.ScrollMath() is returning false when it appears (to me at least) that it is in fact scrolling... Jan 19 19:28:54 <_minego> and since most of the events check isScrolling() they are ignored when that returns false Jan 19 19:31:43 <_minego> I suspect the actual cause of the issue is something lower level.... Jan 19 23:17:55 <_minego> Okay, I have managed to improve scrolling in my app by creating a scrim over each item in the list... I see that the touch scroll strategy has an option for doing this... but how do I turn it on? **** ENDING LOGGING AT Sun Jan 20 02:59:58 2013