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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-20 18:30:37 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-20 18:30:37 +0300
commitaf93bb0a2405ac9b69eb0bc76e2c8940278400d3 (patch)
treeb0baa3ab3e52d4f170a9bf7e59c6e6840ae5a468 /source/blender/editors/space_image/image_buttons.c
parent64c821bd11182b8d36cb44a4aae83e78254fd096 (diff)
UI: right align info in image settings panel
Diffstat (limited to 'source/blender/editors/space_image/image_buttons.c')
-rw-r--r--source/blender/editors/space_image/image_buttons.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_image/image_buttons.c b/source/blender/editors/space_image/image_buttons.c
index 1dd5e6c427b..8fada528f48 100644
--- a/source/blender/editors/space_image/image_buttons.c
+++ b/source/blender/editors/space_image/image_buttons.c
@@ -1207,6 +1207,7 @@ void uiTemplateImageInfo(uiLayout *layout, bContext *C, Image *ima, ImageUser *i
ImBuf *ibuf = BKE_image_acquire_ibuf(ima, iuser, &lock);
uiLayout *col = uiLayoutColumn(layout, true);
+ uiLayoutSetAlignment(col, UI_LAYOUT_ALIGN_RIGHT);
if (ibuf == NULL) {
uiItemL(col, IFACE_("Can't Load Image"), ICON_NONE);