Fix UI for camera data

The fix bit is the split.

But since we are using col.separator() left and right we need this as well.
I still don't think the separators are the way to go, yet may as well be
consistent with the current design in place, thus the extra separator here too.
This commit is contained in:
Dalai Felinto
2018-06-02 11:22:41 +02:00
parent 8433ed76b2
commit bb8770b976

View File

@@ -127,7 +127,8 @@ class DATA_PT_lens(CameraButtonsPanel, Panel):
sub.prop(cam, "shift_x", text="Shift X")
sub.prop(cam, "shift_y", text="Y")
col = split.column(align=True)
col.separator()
sub = col.column(align=True)
sub.prop(cam, "clip_start", text="Clip Start")
sub.prop(cam, "clip_end", text="End")