From 1b9039752ac922355aab565f12d8db3edd834e06 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sat, 20 Feb 2016 20:18:58 +0100 Subject: Fix unnecessary separators in image editor Image menu. --- release/scripts/startup/bl_ui/space_image.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py index d29cd18053f..10b4e24efd9 100644 --- a/release/scripts/startup/bl_ui/space_image.py +++ b/release/scripts/startup/bl_ui/space_image.py @@ -208,19 +208,18 @@ class IMAGE_MT_image(Menu): layout.menu("IMAGE_MT_image_invert") if not show_render: - layout.separator() - if not ima.packed_file: + layout.separator() layout.operator("image.pack") # only for dirty && specific image types, perhaps # this could be done in operator poll too if ima.is_dirty: if ima.source in {'FILE', 'GENERATED'} and ima.type != 'OPEN_EXR_MULTILAYER': + if ima.packed_file: + layout.separator() layout.operator("image.pack", text="Pack As PNG").as_png = True - layout.separator() - class IMAGE_MT_image_invert(Menu): bl_label = "Invert" -- cgit v1.2.3