Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-10-31 21:48:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-10-31 21:48:58 +0300
commitaf72bb50ae41f5ba1f9f5b2310b2aee77907fecf (patch)
treeeac2c8df182ba238758fb51b2292212326e1c7ac /release/scripts/ui/buttons_game.py
parente4881eef529262ec131ab22688e44fb9af2f0bb9 (diff)
improved class validation, variables defined by the rna interface as non-optional could fail silently when absent in the class. Set these to PROP_REGISTER_OPTIONAL and raise an error when others are not found.
last commit broke povray too.
Diffstat (limited to 'release/scripts/ui/buttons_game.py')
-rw-r--r--release/scripts/ui/buttons_game.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/buttons_game.py b/release/scripts/ui/buttons_game.py
index 2a1e6adee5b..77581884515 100644
--- a/release/scripts/ui/buttons_game.py
+++ b/release/scripts/ui/buttons_game.py
@@ -330,6 +330,7 @@ class WorldButtonsPanel(bpy.types.Panel):
return (rd.engine == 'BLENDER_GAME')
class WORLD_PT_game_context_world(WorldButtonsPanel):
+ bl_label = ""
bl_show_header = False
def poll(self, context):