From 36f42081d0d3e6f401e18bf84f6796ca8f8bcfb5 Mon Sep 17 00:00:00 2001 From: LuXu Date: Thu, 4 Nov 2021 12:20:28 +0800 Subject: make width of navigation area configurable (#155) this allows users to configure navigation width from config.h. it also allows disabling the navigation function entirely by using a 0 width. one extra functionality this adds is being able to define an absolute width (in pixels) instead of just percentage via `NAV_IS_REL`. Co-authored-by: NRK --- commands.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands.c') diff --git a/commands.c b/commands.c index cab44ee..f44cee1 100644 --- a/commands.c +++ b/commands.c @@ -29,7 +29,7 @@ void load_image(int); bool mark_image(int, bool); void close_info(void); void open_info(void); -int ptr_third_x(void); +int nav_button(void); void redraw(void); void reset_cursor(void); void animate(void); @@ -286,7 +286,7 @@ bool ci_navigate(arg_t n) bool ci_cursor_navigate(arg_t _) { - return ci_navigate(ptr_third_x() - 1); + return ci_navigate(nav_button() - 1); } bool ci_alternate(arg_t _) -- cgit v1.2.3-54-g00ecf