aboutsummaryrefslogtreecommitdiff
path: root/bin/handler.py
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 02:29:14 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 02:29:14 +0100
commitda015293b605f82399361f12cff367ebf70eaf69 (patch)
tree28efbb24001ca9f3d4daa3136bac5c2e073f52f4 /bin/handler.py
parent8998e2eb104c0965b0c9f190705b70abc16b62d7 (diff)
User may now toggle IP color layer on/off.
[#12] Allowing to toggle the IP layer (white) can help the user better visualize of the underlying memory block structure.
Diffstat (limited to 'bin/handler.py')
-rw-r--r--bin/handler.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/handler.py b/bin/handler.py
index b675159..9305d14 100644
--- a/bin/handler.py
+++ b/bin/handler.py
@@ -94,6 +94,8 @@ class Handler:
self.__printer.proc_scroll_to_selected()
elif cmd == ord("g"):
self.__printer.proc_toggle_gene_view()
+ elif cmd == ord("i"):
+ self.__printer.world.toggle_ip_view()
elif cmd == ord("\n"):
self.__printer.run_cursor()
elif cmd == ord("c"):