From 35f6cfcfb7a7278251d890988fdf6a6bbf793ef8 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 3 Sep 2016 01:07:33 +0300 Subject: [PATCH] Pass List::focus_in to base class It sets the FOCUS flag in state, which is then checked to determine whether to focus items. --- source/list.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/list.cpp b/source/list.cpp index 5a9f749..a9cbcc1 100644 --- a/source/list.cpp +++ b/source/list.cpp @@ -314,6 +314,7 @@ void List::touch_motion(int, int y, unsigned finger) void List::focus_in() { + Container::focus_in(); if(focus_index>=0 && items[focus_index]->is_visible()) set_input_focus(items[focus_index]); else -- 2.43.0