From 600763dffc12c05eaef35be3d5b83d325e9e5def Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20M=C3=BCller?= <34514239+appgurueu@users.noreply.github.com> Date: Wed, 14 May 2025 13:25:32 +0200 Subject: [PATCH] Fix table[] focus regression from f4285a5 (#16136) --- src/gui/guiTable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/guiTable.cpp b/src/gui/guiTable.cpp index 5c3a99057..c129c3c2b 100644 --- a/src/gui/guiTable.cpp +++ b/src/gui/guiTable.cpp @@ -32,7 +32,7 @@ GUITable::GUITable(gui::IGUIEnvironment *env, core::rect rectangle, ISimpleTextureSource *tsrc ): - gui::IGUIElement(gui::EGUIET_ELEMENT, env, parent, id, rectangle), + gui::IGUIElement(gui::EGUIET_TABLE, env, parent, id, rectangle), m_tsrc(tsrc) { assert(tsrc != NULL);