From da015293b605f82399361f12cff367ebf70eaf69 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 02:29:14 +0100 Subject: 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. --- bin/handler.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin/handler.py') 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"): -- cgit v1.2.1