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:
authorPablo Vazquez <venomgfx@gmail.com>2018-07-06 19:29:57 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-07-06 19:29:57 +0300
commitd360eced65ba0919e0f2d6e24aaa766c07866846 (patch)
treec0996bd747138a0eea5bad99ff171c6aa5882ae7
parent4674cffe290e442d755bfe0036e980fc89524796 (diff)
UI: Single-column for 3D Cursor panel in 3D View
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 2fd8c08743d..4dfc9a9129b 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3700,8 +3700,10 @@ class VIEW3D_PT_view3d_cursor(Panel):
def draw(self, context):
layout = self.layout
+ layout.use_property_split = True
view = context.space_data
+
layout.column().prop(view, "cursor_location", text="Location")