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:
authorJoshua Leung <aligorith@gmail.com>2015-03-03 02:51:50 +0300
committerJoshua Leung <aligorith@gmail.com>2015-03-03 02:52:18 +0300
commit6856ea06425357921bd9a7e5089c2f2adbf1413a (patch)
tree0d13e747f35ee430e6abc2b789f49ed555535c4d /release/scripts/startup
parente2c24a18e359517c7e5ae83a6540d3d08bbef8d3 (diff)
Bugfix T43866: 'Purge all' button in the outliner
The cleanups in 08a2101 forgot to modify the UI code which was using these values.
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index 9c6018965a7..7b1dfb9579a 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -57,7 +57,7 @@ class OUTLINER_HT_header(Header):
else:
row = layout.row()
row.label(text="No Keying Set active")
- elif space.display_mode == 'ORPHANED_DATABLOCKS':
+ elif space.display_mode == 'ORPHAN_DATA':
layout.operator("outliner.orphans_purge")