From fdef354be9bcf8743cf8e6e37f21de8df0defe4e Mon Sep 17 00:00:00 2001 From: BlueFox Date: Wed, 13 Nov 2024 20:33:24 +0100 Subject: [PATCH] Updated the error message changed previously --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index f03b045..31987f9 100644 --- a/__init__.py +++ b/__init__.py @@ -61,7 +61,7 @@ class lcdMenu: # some checks: # 1. if you scrolling vertically, I found no elegant way to hide the name (there just need's to be something up there!) if self.scroll_direction and self.hide_menu_name: - raise TypeError("Hiding the menu name whilst having the scroll direction set to horizontal is impossible!") + raise TypeError("Hiding the menu name whilst having the scroll direction set to horizontal is unsupported!") # 2. if there are no menu items to display... if len(self.menu_items) == 0: raise TypeError("Can't show empty menus! Maybe you forgot calling self.setup() after initializing me?")