From 46149791fd6d7aa58d2ca7fe7ed91d89bc6f9337 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Thu, 19 Jul 2018 20:38:02 +0000 Subject: [PATCH] More exclusions for automatic focussability. --- addons/accessibility/accessible.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/accessibility/accessible.gd b/addons/accessibility/accessible.gd index 9426cee..2da11e6 100644 --- a/addons/accessibility/accessible.gd +++ b/addons/accessibility/accessible.gd @@ -166,7 +166,7 @@ func _init(node): return node.add_to_group("accessible") self.node = node - if not node is Container and not node is Panel and not node is Separator: + if not node is Container and not node is Panel and not node is Separator and not node is ScrollBar and not node is Popup: node.set_focus_mode(Control.FOCUS_ALL) node.connect("focus_entered", self, "focused") node.connect("mouse_entered", self, "focused")