From f2b6f737daaec672a09e8cfb3b88748dc90854f7 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 14 Nov 2024 03:29:27 +0000 Subject: [PATCH] Only refresh if filter is not empty --- itemcontroller.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 4d94a24..0139947 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -447,8 +447,10 @@ local PAGES = { text = "<--", bgColor = KEYBOARD_KEY_COLOR, onClick = function() - pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1)) - pageState.reloadState() + if #pageState.filter > 0 then + pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1)) + pageState.reloadState() + end return true end }) @@ -482,8 +484,10 @@ local PAGES = { onClick = ignoreClick, onKey = function(elem, keyCode, held) if keyCode == keys.backspace then - pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1)) - pageState.reloadState() + if #pageState.filter > 0 then + pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1)) + pageState.reloadState() + end return true end return false