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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeta-androcto <meta.androcto1@gmail.com>2019-09-24 08:15:59 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-09-24 08:15:59 +0300
commit6ce5ae8fad90981de823398764607d0f043c1e72 (patch)
treef74325a5ce5d04fd7869933055b5c6f67e7b8c91 /development_edit_operator.py
parentfb9633ffd7bc3d1c4e7702114e1e93be1cfdf516 (diff)
development addons: Close Panels, Fix locations: T70017
Diffstat (limited to 'development_edit_operator.py')
-rw-r--r--development_edit_operator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/development_edit_operator.py b/development_edit_operator.py
index 08e91d87..6f84d037 100644
--- a/development_edit_operator.py
+++ b/development_edit_operator.py
@@ -22,7 +22,7 @@ bl_info = {
"author": "scorpion81",
"version": (1, 2, 2),
"blender": (2, 80, 0),
- "location": "Text Editor > Edit > Edit Operator",
+ "location": "Text Editor > Sidebar > Edit Operator",
"description": "Opens source file of chosen operator or call locations, if source not available",
"warning": "",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
@@ -300,6 +300,7 @@ class TEXT_PT_EditOperatorPanel(Panel):
bl_region_type = 'UI'
bl_label = "Edit Operator"
bl_category = "Text"
+ bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
layout = self.layout