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:
-rw-r--r--development_edit_operator.py3
-rw-r--r--development_icon_get.py5
-rw-r--r--development_iskeyfree.py3
3 files changed, 7 insertions, 4 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
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):