Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(715)

Unified Diff: sky/sdk/lib/framework/fn2.dart

Issue 1180553002: Ink splashes should start at the touch point (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Use more specific types for GameBox and SpriteBox Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/sdk/lib/framework/fn2.dart
diff --git a/sky/sdk/lib/framework/fn2.dart b/sky/sdk/lib/framework/fn2.dart
index bb20e34269e576335cf1429689044f0e76644bea..d1af5ec1fae32c3cf4cc1337c935da10bc4c9f8d 100644
--- a/sky/sdk/lib/framework/fn2.dart
+++ b/sky/sdk/lib/framework/fn2.dart
@@ -1090,7 +1090,7 @@ class _AppView extends AppView {
void dispatchEvent(sky.Event event, HitTestResult result) {
super.dispatchEvent(event, result);
- UINode target = RenderObjectWrapper._getMounted(result.path.first);
+ UINode target = RenderObjectWrapper._getMounted(result.path.first.entry);
// TODO(rafaelw): StopPropagation?
while (target != null) {

Powered by Google App Engine
This is Rietveld 408576698