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>2017-03-19 18:34:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-19 18:37:55 +0300
commit19d493ee10987a049df2b1d6d06d6d9054e35469 (patch)
tree3375895b7fe8bb7baea1bc9d4f3aeeafe68f17af /release/scripts/startup/bl_ui/space_image.py
parent84935998a73de367b31e3e9604942125601de553 (diff)
Moving classes to separate listing broke panel order
Although this wasn't so obvious since it only showed up for factory settings and in the preferences window. Panel display order depends on registration order, Sorry for the noise. On the bright side we no longer need to move classes around to re-arrange panels.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_image.py')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py64
1 files changed, 32 insertions, 32 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 38ec1b7a859..b274657b4f4 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -1243,55 +1243,55 @@ class IMAGE_PT_tools_grease_pencil_brushcurves(GreasePencilBrushCurvesPanel, Pan
classes = (
- IMAGE_HT_header,
+ IMAGE_MT_view,
+ IMAGE_MT_select,
IMAGE_MT_brush,
IMAGE_MT_image,
IMAGE_MT_image_invert,
- IMAGE_MT_select,
IMAGE_MT_uvs,
- IMAGE_MT_uvs_mirror,
- IMAGE_MT_uvs_proportional,
- IMAGE_MT_uvs_select_mode,
IMAGE_MT_uvs_showhide,
- IMAGE_MT_uvs_snap,
+ IMAGE_MT_uvs_proportional,
IMAGE_MT_uvs_transform,
+ IMAGE_MT_uvs_snap,
+ IMAGE_MT_uvs_mirror,
IMAGE_MT_uvs_weldalign,
- IMAGE_MT_view,
- IMAGE_PT_active_mask_point,
- IMAGE_PT_active_mask_spline,
- IMAGE_PT_game_properties,
- IMAGE_PT_grease_pencil,
- IMAGE_PT_grease_pencil_palettecolor,
- IMAGE_PT_image_properties,
+ IMAGE_MT_uvs_select_mode,
+ IMAGE_HT_header,
+ MASK_MT_editor_menus,
IMAGE_PT_mask,
- IMAGE_PT_mask_display,
IMAGE_PT_mask_layers,
+ IMAGE_PT_mask_display,
+ IMAGE_PT_active_mask_spline,
+ IMAGE_PT_active_mask_point,
+ IMAGE_PT_image_properties,
+ IMAGE_PT_game_properties,
+ IMAGE_PT_view_properties,
+ IMAGE_PT_tools_transform_uvs,
IMAGE_PT_paint,
- IMAGE_PT_paint_curve,
- IMAGE_PT_paint_stroke,
- IMAGE_PT_sample_line,
- IMAGE_PT_scope_sample,
- IMAGE_PT_tools_brush_appearance,
IMAGE_PT_tools_brush_overlay,
IMAGE_PT_tools_brush_texture,
- IMAGE_PT_tools_brush_tool,
- IMAGE_PT_tools_grease_pencil_brush,
- IMAGE_PT_tools_grease_pencil_brushcurves,
- IMAGE_PT_tools_grease_pencil_draw,
- IMAGE_PT_tools_grease_pencil_edit,
- IMAGE_PT_tools_grease_pencil_sculpt,
- IMAGE_PT_tools_imagepaint_symmetry,
IMAGE_PT_tools_mask,
IMAGE_PT_tools_mask_texture,
+ IMAGE_PT_tools_brush_tool,
+ IMAGE_PT_paint_stroke,
+ IMAGE_PT_paint_curve,
+ IMAGE_PT_tools_imagepaint_symmetry,
+ IMAGE_PT_tools_brush_appearance,
IMAGE_PT_tools_paint_options,
- IMAGE_PT_tools_transform_uvs,
- IMAGE_PT_view_histogram,
- IMAGE_PT_view_properties,
- IMAGE_PT_view_vectorscope,
- IMAGE_PT_view_waveform,
IMAGE_UV_sculpt,
IMAGE_UV_sculpt_curve,
- MASK_MT_editor_menus,
+ IMAGE_PT_view_histogram,
+ IMAGE_PT_view_waveform,
+ IMAGE_PT_view_vectorscope,
+ IMAGE_PT_sample_line,
+ IMAGE_PT_scope_sample,
+ IMAGE_PT_grease_pencil,
+ IMAGE_PT_grease_pencil_palettecolor,
+ IMAGE_PT_tools_grease_pencil_draw,
+ IMAGE_PT_tools_grease_pencil_edit,
+ IMAGE_PT_tools_grease_pencil_sculpt,
+ IMAGE_PT_tools_grease_pencil_brush,
+ IMAGE_PT_tools_grease_pencil_brushcurves,
)
if __name__ == "__main__": # only for live edit.