From ff2bc6c6cbeae860835198983a5368ffa120dd65 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Fri, 06 Aug 2021 09:02:24 -0400 Subject: tk: Fix focus tab indexing --- (limited to 'src/tk/box.c') diff --git a/src/tk/box.c b/src/tk/box.c index 4b29247..b9faf70 100644 --- a/src/tk/box.c +++ b/src/tk/box.c @@ -56,7 +56,7 @@ _mftk_box_index(struct mftk_widget *w, struct mftk_window *win) { struct mftk_box *b = (struct mftk_box *) w; - mftk_window_index(win, b->child); + mftk_widget_index(b->child, win); } static int -- cgit v0.9.1