[Bf-blender-cvs] [6df0bfad67e] blender-v2.81-release: Fix oso extension detection in the text editor

Campbell Barton noreply at git.blender.org
Thu Oct 31 15:50:21 CET 2019


Commit: 6df0bfad67e1dbeb84fb6121841305a7f2090b91
Author: Campbell Barton
Date:   Fri Nov 1 01:46:18 2019 +1100
Branches: blender-v2.81-release
https://developer.blender.org/rB6df0bfad67e1dbeb84fb6121841305a7f2090b91

Fix oso extension detection in the text editor

===================================================================

M	release/scripts/startup/bl_ui/space_text.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_text.py b/release/scripts/startup/bl_ui/space_text.py
index 9e9ddcf3505..81ccc9216a1 100644
--- a/release/scripts/startup/bl_ui/space_text.py
+++ b/release/scripts/startup/bl_ui/space_text.py
@@ -57,7 +57,8 @@ class TEXT_HT_header(Header):
         syntax.prop(st, "show_syntax_highlight", text="")
 
         if text:
-            is_osl = text.name.endswith((".osl", ".osl"))
+            text_name = text.name
+            is_osl = text_name.endswith((".osl", ".oso"))
 
             row = layout.row()
             if is_osl:
@@ -65,7 +66,7 @@ class TEXT_HT_header(Header):
                 row.operator("node.shader_script_update")
             else:
                 row = layout.row()
-                row.active = text.name.endswith(".py")
+                row.active = text_name.endswith(".py")
                 row.prop(text, "use_module")
 
                 row = layout.row()



More information about the Bf-blender-cvs mailing list