From be8ebba325451b387c0aedacfcda6c53e6c51188 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Mon, 4 Mar 2019 10:59:44 +0100 Subject: Allow using internal popupmenu or ext_popupmenu for wildmenu Deprecate ext_wildmenu. ext_popupmenu already contains more state (anchor position), and will allow further expansion (info about items). --- test/functional/ui/screen.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'test/functional/ui/screen.lua') diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 8b1b77eb81..d072444ee1 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -937,10 +937,7 @@ function Screen:_handle_option_set(name, value) end function Screen:_handle_popupmenu_show(items, selected, row, col, grid) - if (not self._options.ext_multigrid) and grid == 1 then - grid = nil - end - self.popupmenu = {items=items, pos=selected, anchor={row, col, grid}} + self.popupmenu = {items=items, pos=selected, anchor={grid, row, col}} end function Screen:_handle_popupmenu_select(selected) -- cgit