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:
authorCampbell Barton <ideasman42@gmail.com>2018-07-31 14:06:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-31 14:31:04 +0300
commitc1185f3d0dbbb51dea17cc2ac759776365927738 (patch)
treed5836ab0496a6dbbdb0818b66781185965b68352 /release/scripts/startup/bl_ui/space_image.py
parentc7e1d067a5ce3ce9803cce5db6ac25f9692a7472 (diff)
Cleanup: pep8, windows line endings
Diffstat (limited to 'release/scripts/startup/bl_ui/space_image.py')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 501f58e9901..7a1d4117451 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -21,15 +21,15 @@ import bpy
import math
from bpy.types import Header, Menu, Panel, UIList
from .properties_paint_common import (
- UnifiedPaintPanel,
- brush_texture_settings,
- brush_texpaint_common,
- brush_mask_texture_settings,
- )
+ UnifiedPaintPanel,
+ brush_texture_settings,
+ brush_texpaint_common,
+ brush_mask_texture_settings,
+)
from .properties_grease_pencil_common import (
- GreasePencilDrawingToolsPanel,
- GreasePencilDataPanel
- )
+ GreasePencilDrawingToolsPanel,
+ GreasePencilDataPanel,
+)
from bpy.app.translations import pgettext_iface as iface_
@@ -1342,12 +1342,13 @@ class IMAGE_PT_grease_pencil(GreasePencilDataPanel, Panel):
# NOTE: this is just a wrapper around the generic GP Panel
# Grease Pencil drawing tools
+
+
class IMAGE_PT_tools_grease_pencil_draw(GreasePencilDrawingToolsPanel, Panel):
bl_space_type = 'IMAGE_EDITOR'
bl_region_type = 'TOOLS'
-
classes = (
IMAGE_MT_view,
IMAGE_MT_select,