diff --git a/src/blender_maxwell/node_trees/maxwell_sim_nodes/nodes/inputs/constants/scientific_constant.py b/src/blender_maxwell/node_trees/maxwell_sim_nodes/nodes/inputs/constants/scientific_constant.py index c83dd9a..58b05e9 100644 --- a/src/blender_maxwell/node_trees/maxwell_sim_nodes/nodes/inputs/constants/scientific_constant.py +++ b/src/blender_maxwell/node_trees/maxwell_sim_nodes/nodes/inputs/constants/scientific_constant.py @@ -34,7 +34,11 @@ class ScientificConstantNode(base.MaxwellSimNode): self, edit_text: str, ): - return [name for name in constants.SCI_CONSTANTS if edit_text in name] + return [ + name + for name in constants.SCI_CONSTANTS + if edit_text.lower() in name.lower() + ] def on_update_sci_constant( self,