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

Unified Diff: sky/examples/raw/ink_well.dart

Issue 1146923005: Fix gesture events in fn2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « sky/examples/game/lib/sprite_box.dart ('k') | sky/examples/raw/sector_layout.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/raw/ink_well.dart
diff --git a/sky/examples/raw/ink_well.dart b/sky/examples/raw/ink_well.dart
index d2ff9f82289a06ea7aadbb7ad5b0af693c41ba3e..27eb60b23cdee6203f099e06eb6dff2e89da5899 100644
--- a/sky/examples/raw/ink_well.dart
+++ b/sky/examples/raw/ink_well.dart
@@ -41,7 +41,7 @@ class InkSplash {
class InkWell extends RenderBox {
final List<InkSplash> _splashes = new List<InkSplash>();
- void handlePointer(sky.PointerEvent event) {
+ void handleEvent(sky.Event event) {
switch (event.type) {
case 'pointerdown':
_splashes.add(new InkSplash(position: new sky.Point(event.x, event.y),
« no previous file with comments | « sky/examples/game/lib/sprite_box.dart ('k') | sky/examples/raw/sector_layout.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698