[Bf-blender-cvs] [5adb3607dc6] master: UI: expand more image editor scope panels by default

Brecht Van Lommel noreply at git.blender.org
Sun May 19 19:55:53 CEST 2019


Commit: 5adb3607dc65f99e8eef538043842e23e23ee5f2
Author: Brecht Van Lommel
Date:   Sun May 19 19:33:01 2019 +0200
Branches: master
https://developer.blender.org/rB5adb3607dc65f99e8eef538043842e23e23ee5f2

UI: expand more image editor scope panels by default

Better to show all information about the image at once, there is enough space
since they are in their own category.

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

M	release/scripts/startup/bl_ui/space_image.py

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

diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 6a658418059..2562ef894f7 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -1493,7 +1493,6 @@ class IMAGE_PT_view_waveform(ImageScopesPanel, Panel):
     bl_region_type = 'UI'
     bl_category = "Scopes"
     bl_label = "Waveform"
-    bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):
         layout = self.layout
@@ -1511,7 +1510,6 @@ class IMAGE_PT_view_vectorscope(ImageScopesPanel, Panel):
     bl_region_type = 'UI'
     bl_category = "Scopes"
     bl_label = "Vectorscope"
-    bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):
         layout = self.layout
@@ -1526,7 +1524,6 @@ class IMAGE_PT_sample_line(ImageScopesPanel, Panel):
     bl_region_type = 'UI'
     bl_category = "Scopes"
     bl_label = "Sample Line"
-    bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):
         layout = self.layout



More information about the Bf-blender-cvs mailing list