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>2018-08-22 08:41:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-22 08:43:28 +0300
commit583fb8c1405cda2d89b36728f83962978bbb7a24 (patch)
tree425e0b3e40d1ab74140569a31f3180d6c4690634 /release/scripts/startup
parentcb410429cc7fcfe744cfe62b068a17cc3da5aeb8 (diff)
Cleanup: RNA naming
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_gpencil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_gpencil.py b/release/scripts/startup/bl_ui/properties_data_gpencil.py
index 169b521a2eb..be35d2ba86c 100644
--- a/release/scripts/startup/bl_ui/properties_data_gpencil.py
+++ b/release/scripts/startup/bl_ui/properties_data_gpencil.py
@@ -367,13 +367,13 @@ class DATA_PT_gpencil_display(DataButtonsPanel, Panel):
layout.prop(gpd, "edit_line_color", text="Edit Line Color")
layout.prop(ob, "empty_draw_size", text="Marker Size")
- layout.prop(gpd, "force_fill_recalc", text="Force Fill Update")
+ layout.prop(gpd, "use_force_fill_recalc", text="Force Fill Update")
col = layout.column(align=True)
col.prop(gpd, "show_constant_thickness")
sub = col.column()
sub.active = not gpd.show_constant_thickness
- sub.prop(gpd, "pixfactor", text="Thickness Scale")
+ sub.prop(gpd, "pixel_factor", text="Thickness Scale")
if gpl:
layout.prop(gpd, "show_stroke_direction", text="Show Stroke Directions")