From b89077187b22ba7e8ca4c3ff95aeb49caff75b7b Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Fri, 14 Apr 2023 20:34:03 +0100 Subject: [PATCH] Fix ContentDB page not being reset when changing type Fixes #13362 --- builtin/mainmenu/dlg_contentstore.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/mainmenu/dlg_contentstore.lua b/builtin/mainmenu/dlg_contentstore.lua index ce91e74f0..21b7ad457 100644 --- a/builtin/mainmenu/dlg_contentstore.lua +++ b/builtin/mainmenu/dlg_contentstore.lua @@ -955,6 +955,7 @@ function store.handle_submit(this, fields) local new_type = table.indexof(filter_types_titles, fields.type) if new_type ~= filter_type then filter_type = new_type + cur_page = 1 store.filter_packages(search_string) return true end