diff options
author | Nikhil Rao <[email protected]> | 2010-07-21 19:46:11 -0700 |
---|---|---|
committer | Frederic Weisbecker <[email protected]> | 2010-08-02 01:31:55 +0200 |
commit | be6d947691376218e788418e2656fc9a3e43b9bc (patch) | |
tree | 8a6a5a641913e35d7bf3f988a53b924c7871c828 | |
parent | 207f90fc4757adc732d5ac23ad11bb90dd078754 (diff) |
perf, sched migration: Fix key bindings
EVT_KEY_DOWN and EVT_LEFT_DOWN events are not bound to the RootFrame
event handler. As a result, zoom/scroll via keyboard events do not
work. This patch adds the missing bindings.
Signed-off-by: Nikhil Rao <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Tom Zanussi <[email protected]>
Signed-off-by: Frederic Weisbecker <[email protected]>
-rw-r--r-- | tools/perf/scripts/python/sched-migration.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/scripts/python/sched-migration.py b/tools/perf/scripts/python/sched-migration.py index e9898c5dbcc8..8b8fb7c60991 100644 --- a/tools/perf/scripts/python/sched-migration.py +++ b/tools/perf/scripts/python/sched-migration.py @@ -54,6 +54,8 @@ class RootFrame(wx.Frame): self.scroll_panel.Bind(wx.EVT_KEY_DOWN, self.on_key_press) self.scroll_panel.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down) self.scroll.Bind(wx.EVT_PAINT, self.on_paint) + self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press) + self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down) self.scroll.Fit() self.Fit() |