[Bf-extensions-cvs] [6ce5ae8f] master: development addons: Close Panels, Fix locations: T70017

meta-androcto noreply at git.blender.org
Tue Sep 24 07:16:16 CEST 2019


Commit: 6ce5ae8fad90981de823398764607d0f043c1e72
Author: meta-androcto
Date:   Tue Sep 24 15:15:59 2019 +1000
Branches: master
https://developer.blender.org/rBA6ce5ae8fad90981de823398764607d0f043c1e72

development addons: Close Panels, Fix locations: T70017

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

M	development_edit_operator.py
M	development_icon_get.py
M	development_iskeyfree.py

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

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
diff --git a/development_icon_get.py b/development_icon_get.py
index 9aeb1a12..51c440e2 100644
--- a/development_icon_get.py
+++ b/development_icon_get.py
@@ -25,7 +25,7 @@ bl_info = {
     "author": "roaoao",
     "version": (1, 4, 0),
     "blender": (2, 80, 0),
-    "location": "Search Menu > Icon Viewer, Text Editor > Properties",
+    "location": "Text Editor > Dev Tab > Icon Viewer",
     "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6"
                 "/Py/Scripts/Development/Display_All_Icons",
     "category": "Development"
@@ -248,7 +248,8 @@ class IV_PT_icons(bpy.types.Panel):
     bl_space_type = "TEXT_EDITOR"
     bl_region_type = "UI"
     bl_label = "Icon Viewer"
-    bl_category = "Icon Viewer"
+    bl_category = "Dev"
+    bl_options = {'DEFAULT_CLOSED'}
 
     @staticmethod
     def tag_redraw():
diff --git a/development_iskeyfree.py b/development_iskeyfree.py
index e69867b5..8664d5cc 100644
--- a/development_iskeyfree.py
+++ b/development_iskeyfree.py
@@ -23,7 +23,7 @@ bl_info = {
     "author": "Antonio Vazquez (antonioya)",
     "version": (1, 1, 2),
     "blender": (2, 80, 0),
-    "location": "Text Editor > Props Shelf (Ctrl/t > IsKeyFree Tools",
+    "location": "Text Editor > Sidebar > Dev Tab",
     "description": "Find free shortcuts, inform about used and print a key list",
     "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6"
                 "/Py/Scripts/Development/IsKeyFree",
@@ -216,6 +216,7 @@ class UIControlPanel(Panel):
     bl_region_type = "UI"
     bl_label = "Is Key Free"
     bl_category = 'Dev'
+    bl_options = {'DEFAULT_CLOSED'}
 
     # noinspection PyUnusedLocal
     def draw(self, context):



More information about the Bf-extensions-cvs mailing list