From f86ce2c7f7bb522d04370abf23308905044b3f8b Mon Sep 17 00:00:00 2001 From: Guillaume Chazarain Date: Thu, 25 Dec 2008 20:48:37 +0100 Subject: [PATCH] The interactive control 'O' is the same as 'o'. --- iotop/ui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iotop/ui.py b/iotop/ui.py index 3030ea6..6f230e7 100644 --- a/iotop/ui.py +++ b/iotop/ui.py @@ -138,6 +138,8 @@ class IOTopUI(object): lambda: self.reverse_sorting(), ord('o'): toggle_only_io, + ord('O'): + toggle_only_io, curses.KEY_LEFT: lambda: self.adjust_sorting_key(-1), curses.KEY_RIGHT: -- 2.11.4.GIT