UI: Capitalization Corrections
Approximately 141 changes of capitalization to conform to MLA title style. Differential Revision: https://developer.blender.org/D8392 Reviewed by Julian Eisel
This commit is contained in:
committed by
Harley Acheson
parent
ca83649b7d
commit
622b30225a
@@ -348,7 +348,7 @@ class UpdateAnimatedTransformConstraint(Operator):
|
||||
bl_options = {'REGISTER', 'UNDO'}
|
||||
|
||||
use_convert_to_radians: BoolProperty(
|
||||
name="Convert To Radians",
|
||||
name="Convert to Radians",
|
||||
description="Convert fcurves/drivers affecting rotations to radians (Warning: use this only once!)",
|
||||
default=True,
|
||||
)
|
||||
|
||||
@@ -1011,7 +1011,7 @@ class CLIP_OT_track_settings_as_default(Operator):
|
||||
"""Copy tracking settings from active track to default settings"""
|
||||
|
||||
bl_idname = "clip.track_settings_as_default"
|
||||
bl_label = "Track Settings As Default"
|
||||
bl_label = "Track Settings as Default"
|
||||
bl_options = {'UNDO', 'REGISTER'}
|
||||
|
||||
@classmethod
|
||||
|
||||
@@ -85,7 +85,7 @@ class ConsoleAutocomplete(Operator):
|
||||
class ConsoleCopyAsScript(Operator):
|
||||
"""Copy the console contents for use in a script"""
|
||||
bl_idname = "console.copy_as_script"
|
||||
bl_label = "Copy to Clipboard (as script)"
|
||||
bl_label = "Copy to Clipboard (as Script)"
|
||||
|
||||
@classmethod
|
||||
def poll(cls, context):
|
||||
|
||||
@@ -32,7 +32,7 @@ class SequencerCrossfadeSounds(Operator):
|
||||
"""Do cross-fading volume animation of two selected sound strips"""
|
||||
|
||||
bl_idname = "sequencer.crossfade_sounds"
|
||||
bl_label = "Crossfade sounds"
|
||||
bl_label = "Crossfade Sounds"
|
||||
bl_options = {'REGISTER', 'UNDO'}
|
||||
|
||||
@classmethod
|
||||
@@ -83,7 +83,7 @@ class SequencerSplitMulticam(Operator):
|
||||
"""Split multi-cam strip and select camera"""
|
||||
|
||||
bl_idname = "sequencer.split_multicam"
|
||||
bl_label = "Split multicam"
|
||||
bl_label = "Split Multicam"
|
||||
bl_options = {'REGISTER', 'UNDO'}
|
||||
|
||||
camera: IntProperty(
|
||||
|
||||
@@ -1112,9 +1112,9 @@ class PREFERENCES_OT_studiolight_uninstall(Operator):
|
||||
|
||||
|
||||
class PREFERENCES_OT_studiolight_copy_settings(Operator):
|
||||
"""Copy Studio Light settings to the Studio light editor"""
|
||||
"""Copy Studio Light settings to the Studio Light editor"""
|
||||
bl_idname = "preferences.studiolight_copy_settings"
|
||||
bl_label = "Copy Studio Light settings"
|
||||
bl_label = "Copy Studio Light Settings"
|
||||
index: IntProperty()
|
||||
|
||||
def execute(self, context):
|
||||
|
||||
@@ -1660,7 +1660,7 @@ class WM_OT_owner_disable(Operator):
|
||||
class WM_OT_tool_set_by_id(Operator):
|
||||
"""Set the tool by name (for keymaps)"""
|
||||
bl_idname = "wm.tool_set_by_id"
|
||||
bl_label = "Set Tool By Name"
|
||||
bl_label = "Set Tool by Name"
|
||||
|
||||
name: StringProperty(
|
||||
name="Identifier",
|
||||
@@ -1718,7 +1718,7 @@ class WM_OT_tool_set_by_id(Operator):
|
||||
class WM_OT_tool_set_by_index(Operator):
|
||||
"""Set the tool by index (for keymaps)"""
|
||||
bl_idname = "wm.tool_set_by_index"
|
||||
bl_label = "Set Tool By Index"
|
||||
bl_label = "Set Tool by Index"
|
||||
index: IntProperty(
|
||||
name="Index in toolbar",
|
||||
default=0,
|
||||
|
||||
@@ -54,7 +54,7 @@ class DATA_PT_empty(DataButtonsPanel, Panel):
|
||||
depth_row.prop(ob, "empty_image_depth", text="Depth", expand=True)
|
||||
col.row().prop(ob, "empty_image_side", text="Side", expand=True)
|
||||
|
||||
col = layout.column(heading="Show in", align=True)
|
||||
col = layout.column(heading="Show In", align=True)
|
||||
col.prop(ob, "show_empty_image_orthographic", text="Orthographic")
|
||||
col.prop(ob, "show_empty_image_perspective", text="Perspective")
|
||||
col.prop(ob, "show_empty_image_only_axis_aligned", text="Only Axis Aligned")
|
||||
|
||||
@@ -101,7 +101,7 @@ class GPENCIL_MT_layer_context_menu(Menu):
|
||||
layout.separator()
|
||||
|
||||
layout.operator("gpencil.lock_all", icon='LOCKED', text="Lock All")
|
||||
layout.operator("gpencil.unlock_all", icon='UNLOCKED', text="UnLock All")
|
||||
layout.operator("gpencil.unlock_all", icon='UNLOCKED', text="Unlock All")
|
||||
layout.prop(gpd, "use_autolock_layers", text="Autolock Inactive Layers")
|
||||
|
||||
layout.separator()
|
||||
@@ -263,7 +263,7 @@ class DATA_PT_gpencil_onion_skinning_display(DataButtonsPanel, Panel):
|
||||
layout.use_property_split = True
|
||||
layout.enabled = gpd.users <= 1
|
||||
|
||||
layout.prop(gpd, "use_ghosts_always", text="View In Render")
|
||||
layout.prop(gpd, "use_ghosts_always", text="View in Render")
|
||||
|
||||
col = layout.column(align=True)
|
||||
col.prop(gpd, "use_onion_fade", text="Fade")
|
||||
|
||||
@@ -57,7 +57,7 @@ class MESH_MT_vertex_group_context_menu(Menu):
|
||||
layout.separator()
|
||||
props = layout.operator("object.vertex_group_lock", icon='LOCKED', text="Lock All")
|
||||
props.action, props.mask = 'LOCK', 'ALL'
|
||||
props = layout.operator("object.vertex_group_lock", icon='UNLOCKED', text="UnLock All")
|
||||
props = layout.operator("object.vertex_group_lock", icon='UNLOCKED', text="Unlock All")
|
||||
props.action, props.mask = 'UNLOCK', 'ALL'
|
||||
props = layout.operator("object.vertex_group_lock", text="Lock Invert All")
|
||||
props.action, props.mask = 'INVERT', 'ALL'
|
||||
|
||||
@@ -162,7 +162,7 @@ class VIEWLAYER_PT_freestyle(ViewLayerFreestyleButtonsPanel, Panel):
|
||||
|
||||
if freestyle.mode == 'SCRIPT':
|
||||
row = layout.row()
|
||||
row.label(text="Style modules:")
|
||||
row.label(text="Style Modules:")
|
||||
row.operator("scene.freestyle_module_add", text="Add")
|
||||
for module in freestyle.modules:
|
||||
box = layout.box()
|
||||
|
||||
@@ -884,7 +884,7 @@ class GreasePencilLayerDisplayPanel:
|
||||
col.prop(gpl, "channel_color")
|
||||
|
||||
col = layout.row(align=True)
|
||||
col.prop(gpl, "use_solo_mode", text="Show Only On Keyframed")
|
||||
col.prop(gpl, "use_solo_mode", text="Show Only on Keyframed")
|
||||
|
||||
|
||||
class GreasePencilFlipTintColors(Operator):
|
||||
|
||||
@@ -37,7 +37,7 @@ def draw_mask_context_menu(layout, context):
|
||||
|
||||
layout.separator()
|
||||
|
||||
layout.operator("mask.shape_key_rekey", text="Re-key Shape Points")
|
||||
layout.operator("mask.shape_key_rekey", text="Re-Key Shape Points")
|
||||
layout.operator("mask.feather_weight_clear")
|
||||
layout.operator("mask.shape_key_feather_reset", text="Reset Feather Animation")
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ class GPENCIL_MT_material_context_menu(Menu):
|
||||
layout.separator()
|
||||
|
||||
layout.operator("gpencil.material_lock_all", icon='LOCKED', text="Lock All")
|
||||
layout.operator("gpencil.material_unlock_all", icon='UNLOCKED', text="UnLock All")
|
||||
layout.operator("gpencil.material_unlock_all", icon='UNLOCKED', text="Unlock All")
|
||||
|
||||
layout.operator("gpencil.material_lock_unused", text="Lock Unselected")
|
||||
layout.operator("gpencil.lock_layer", text="Lock Unused")
|
||||
|
||||
@@ -364,7 +364,7 @@ class OBJECT_PT_visibility(ObjectButtonsPanel, Panel):
|
||||
|
||||
layout.prop(ob, "hide_select", text="Selectable", toggle=False, invert_checkbox=True)
|
||||
|
||||
col = layout.column(heading="Show in")
|
||||
col = layout.column(heading="Show In")
|
||||
col.prop(ob, "hide_viewport", text="Viewports", toggle=False, invert_checkbox=True)
|
||||
col.prop(ob, "hide_render", text="Renders", toggle=False, invert_checkbox=True)
|
||||
|
||||
|
||||
@@ -330,7 +330,7 @@ class StrokePanel(BrushPanel):
|
||||
col.separator()
|
||||
|
||||
if brush.use_anchor:
|
||||
col.prop(brush, "use_edge_to_edge", text="Edge To Edge")
|
||||
col.prop(brush, "use_edge_to_edge", text="Edge to Edge")
|
||||
|
||||
if brush.use_airbrush:
|
||||
col.prop(brush, "rate", text="Rate", slider=True)
|
||||
|
||||
@@ -228,7 +228,7 @@ def point_cache_ui(self, cache, enabled, cachetype):
|
||||
|
||||
sub = col.row()
|
||||
sub.enabled = enabled
|
||||
sub.operator("ptcache.bake", text="Calculate To Frame").bake = False
|
||||
sub.operator("ptcache.bake", text="Calculate to Frame").bake = False
|
||||
|
||||
sub = col.column()
|
||||
sub.enabled = enabled
|
||||
@@ -237,7 +237,7 @@ def point_cache_ui(self, cache, enabled, cachetype):
|
||||
col = flow.column()
|
||||
col.operator("ptcache.bake_all", text="Bake All Dynamics").bake = True
|
||||
col.operator("ptcache.free_bake_all", text="Delete All Bakes")
|
||||
col.operator("ptcache.bake_all", text="Update All To Frame").bake = False
|
||||
col.operator("ptcache.bake_all", text="Update All to Frame").bake = False
|
||||
|
||||
|
||||
def effector_weights_ui(self, weights, weight_type):
|
||||
|
||||
@@ -102,7 +102,7 @@ class PHYSICS_PT_field_settings(PhysicButtonsPanel, Panel):
|
||||
col.separator()
|
||||
|
||||
col = flow.column()
|
||||
col.prop(field, "guide_clump_amount", text="Clumping amount")
|
||||
col.prop(field, "guide_clump_amount", text="Clumping Amount")
|
||||
col.prop(field, "guide_clump_shape")
|
||||
col.prop(field, "use_max_distance")
|
||||
|
||||
@@ -378,7 +378,7 @@ class PHYSICS_PT_collision_particle(PhysicButtonsPanel, Panel):
|
||||
|
||||
|
||||
class PHYSICS_PT_collision_softbody(PhysicButtonsPanel, Panel):
|
||||
bl_label = "Softbody And Cloth"
|
||||
bl_label = "Softbody & Cloth"
|
||||
bl_parent_id = "PHYSICS_PT_collision"
|
||||
COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
|
||||
|
||||
|
||||
@@ -196,7 +196,7 @@ class PHYSICS_PT_settings(PhysicButtonsPanel, Panel):
|
||||
col = flow.column()
|
||||
if PhysicButtonsPanel.poll_gas_domain(context):
|
||||
col.prop(domain, "clipping", text="Empty Space")
|
||||
col.prop(domain, "delete_in_obstacle", text="Delete In Obstacle")
|
||||
col.prop(domain, "delete_in_obstacle", text="Delete in Obstacle")
|
||||
|
||||
if domain.cache_type == 'MODULAR':
|
||||
col.separator()
|
||||
|
||||
@@ -560,7 +560,7 @@ class CLIP_PT_tools_solve(CLIP_PT_tracking_panel, Panel):
|
||||
class CLIP_PT_tools_cleanup(CLIP_PT_tracking_panel, Panel):
|
||||
bl_space_type = 'CLIP_EDITOR'
|
||||
bl_region_type = 'TOOLS'
|
||||
bl_label = "Clean up"
|
||||
bl_label = "Clean Up"
|
||||
bl_options = {'DEFAULT_CLOSED'}
|
||||
bl_category = "Solve"
|
||||
|
||||
@@ -1000,9 +1000,9 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, Panel):
|
||||
row.prop(stab, "show_tracks_expanded", text="", emboss=False)
|
||||
|
||||
if not stab.show_tracks_expanded:
|
||||
row.label(text="Tracks For Stabilization")
|
||||
row.label(text="Tracks for Stabilization")
|
||||
else:
|
||||
row.label(text="Tracks For Location")
|
||||
row.label(text="Tracks for Location")
|
||||
row = box.row()
|
||||
row.template_list("UI_UL_list", "stabilization_tracks", stab, "tracks",
|
||||
stab, "active_track_index", rows=2)
|
||||
@@ -1018,7 +1018,7 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, Panel):
|
||||
# Usually we don't hide things from interface, but here every pixel of
|
||||
# vertical space is precious.
|
||||
if stab.use_stabilize_rotation:
|
||||
box.label(text="Tracks For Rotation / Scale")
|
||||
box.label(text="Tracks for Rotation/Scale")
|
||||
row = box.row()
|
||||
row.template_list("UI_UL_list", "stabilization_rotation_tracks",
|
||||
stab, "rotation_tracks",
|
||||
|
||||
@@ -336,7 +336,7 @@ class DOPESHEET_MT_view(Menu):
|
||||
|
||||
layout.separator()
|
||||
|
||||
layout.prop(st.dopesheet, "use_multi_word_filter", text="Multi-word Match Search")
|
||||
layout.prop(st.dopesheet, "use_multi_word_filter", text="Multi-Word Match Search")
|
||||
|
||||
layout.separator()
|
||||
|
||||
|
||||
@@ -1071,7 +1071,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
|
||||
flow.prop(strip, "use_only_boost")
|
||||
|
||||
elif strip_type == 'SPEED':
|
||||
layout.prop(strip, "use_default_fade", text="Stretch to input strip length")
|
||||
layout.prop(strip, "use_default_fade", text="Stretch to Input Strip Length")
|
||||
if not strip.use_default_fade:
|
||||
layout.prop(strip, "use_as_speed")
|
||||
if strip.use_as_speed:
|
||||
@@ -1113,7 +1113,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
|
||||
# The multicam strip needs at least 2 strips to be useful
|
||||
if strip_channel > 2:
|
||||
BT_ROW = 4
|
||||
col.label(text=" Cut to")
|
||||
col.label(text="Cut To")
|
||||
row = col.row()
|
||||
|
||||
for i in range(1, strip_channel):
|
||||
@@ -1153,7 +1153,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
|
||||
col.prop(strip, "use_frame_interpolate")
|
||||
|
||||
elif strip_type in {'CROSS', 'GAMMA_CROSS', 'WIPE', 'ALPHA_OVER', 'ALPHA_UNDER', 'OVER_DROP'}:
|
||||
col.prop(strip, "use_default_fade", text="Default fade")
|
||||
col.prop(strip, "use_default_fade", text="Default Fade")
|
||||
if not strip.use_default_fade:
|
||||
col.prop(strip, "effect_fader", text="Effect Fader")
|
||||
elif strip_type == 'GAUSSIAN_BLUR':
|
||||
|
||||
@@ -177,7 +177,7 @@ class TEXT_PT_find(Panel):
|
||||
|
||||
row = col.row(align=True)
|
||||
row.operator("text.replace")
|
||||
row.operator("text.replace", text="Replace all").all = True
|
||||
row.operator("text.replace", text="Replace All").all = True
|
||||
|
||||
layout.separator()
|
||||
|
||||
|
||||
@@ -279,7 +279,7 @@ class USERPREF_PT_interface_temporary_windows(InterfacePanel, CenterAlignMixIn,
|
||||
view = prefs.view
|
||||
|
||||
col = layout.column()
|
||||
col.prop(view, "render_display_type", text="Render in")
|
||||
col.prop(view, "render_display_type", text="Render In")
|
||||
col.prop(view, "filebrowser_display_type", text="File Browser")
|
||||
|
||||
|
||||
@@ -373,8 +373,8 @@ class USERPREF_PT_edit_objects_new(EditingPanel, CenterAlignMixIn, Panel):
|
||||
|
||||
flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False)
|
||||
|
||||
flow.prop(edit, "material_link", text="Link Materials to")
|
||||
flow.prop(edit, "object_align", text="Align to")
|
||||
flow.prop(edit, "material_link", text="Link Materials To")
|
||||
flow.prop(edit, "object_align", text="Align To")
|
||||
flow.prop(edit, "use_enter_edit_mode", text="Enter Edit Mode")
|
||||
flow.prop(edit, "collection_instance_empty_size", text="Instance Empty Size")
|
||||
|
||||
@@ -479,7 +479,7 @@ class USERPREF_PT_edit_misc(EditingPanel, CenterAlignMixIn, Panel):
|
||||
|
||||
col = layout.column()
|
||||
col.prop(edit, "sculpt_paint_overlay_color", text="Sculpt Overlay Color")
|
||||
col.prop(edit, "node_margin", text="Node Auto-offset Margin")
|
||||
col.prop(edit, "node_margin", text="Node Auto-Offset Margin")
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
@@ -1348,7 +1348,7 @@ class USERPREF_PT_saveload_blend(SaveLoadPanel, CenterAlignMixIn, Panel):
|
||||
col.prop(view, "use_save_prompt")
|
||||
col.prop(paths, "use_save_preview_images")
|
||||
|
||||
col = layout.column(heading="Default to")
|
||||
col = layout.column(heading="Default To")
|
||||
col.prop(paths, "use_relative_paths")
|
||||
col.prop(paths, "use_file_compression")
|
||||
col.prop(paths, "use_load_ui")
|
||||
@@ -1377,7 +1377,7 @@ class USERPREF_PT_saveload_blend_autosave(SaveLoadPanel, CenterAlignMixIn, Panel
|
||||
|
||||
col = layout.column()
|
||||
col.active = paths.use_auto_save_temporary_files
|
||||
col.prop(paths, "auto_save_time", text="Timer (mins)")
|
||||
col.prop(paths, "auto_save_time", text="Timer (Minutes)")
|
||||
|
||||
|
||||
class USERPREF_PT_saveload_file_browser(SaveLoadPanel, CenterAlignMixIn, Panel):
|
||||
|
||||
@@ -2257,7 +2257,7 @@ class VIEW3D_MT_object(Menu):
|
||||
|
||||
ob = context.active_object
|
||||
if ob and ob.type == 'GPENCIL' and context.gpencil_data:
|
||||
layout.operator_menu_enum("gpencil.convert", "type", text="Convert to")
|
||||
layout.operator_menu_enum("gpencil.convert", "type", text="Convert To")
|
||||
else:
|
||||
layout.operator_menu_enum("object.convert", "target")
|
||||
|
||||
@@ -3035,14 +3035,14 @@ class VIEW3D_MT_mask(Menu):
|
||||
|
||||
layout.separator()
|
||||
|
||||
props = layout.operator("sculpt.mask_expand", text="Expand Mask By Topology")
|
||||
props = layout.operator("sculpt.mask_expand", text="Expand Mask by Topology")
|
||||
props.use_normals = False
|
||||
props.keep_previous_mask = False
|
||||
props.invert = True
|
||||
props.smooth_iterations = 2
|
||||
props.create_face_set = False
|
||||
|
||||
props = layout.operator("sculpt.mask_expand", text="Expand Mask By Curvature")
|
||||
props = layout.operator("sculpt.mask_expand", text="Expand Mask by Curvature")
|
||||
props.use_normals = True
|
||||
props.keep_previous_mask = True
|
||||
props.invert = False
|
||||
@@ -3428,7 +3428,7 @@ class VIEW3D_MT_pose_constraints(Menu):
|
||||
def draw(self, _context):
|
||||
layout = self.layout
|
||||
|
||||
layout.operator("pose.constraint_add_with_targets", text="Add (With Targets)...")
|
||||
layout.operator("pose.constraint_add_with_targets", text="Add (with Targets)...")
|
||||
layout.operator("pose.constraints_copy")
|
||||
layout.operator("pose.constraints_clear")
|
||||
|
||||
@@ -3440,9 +3440,9 @@ class VIEW3D_MT_pose_names(Menu):
|
||||
layout = self.layout
|
||||
|
||||
layout.operator_context = 'EXEC_REGION_WIN'
|
||||
layout.operator("pose.autoside_names", text="AutoName Left/Right").axis = 'XAXIS'
|
||||
layout.operator("pose.autoside_names", text="AutoName Front/Back").axis = 'YAXIS'
|
||||
layout.operator("pose.autoside_names", text="AutoName Top/Bottom").axis = 'ZAXIS'
|
||||
layout.operator("pose.autoside_names", text="Auto-Name Left/Right").axis = 'XAXIS'
|
||||
layout.operator("pose.autoside_names", text="Auto-Name Front/Back").axis = 'YAXIS'
|
||||
layout.operator("pose.autoside_names", text="Auto-Name Top/Bottom").axis = 'ZAXIS'
|
||||
layout.operator("pose.flip_names")
|
||||
|
||||
|
||||
@@ -4769,9 +4769,9 @@ class VIEW3D_MT_edit_armature_names(Menu):
|
||||
layout = self.layout
|
||||
|
||||
layout.operator_context = 'EXEC_REGION_WIN'
|
||||
layout.operator("armature.autoside_names", text="AutoName Left/Right").type = 'XAXIS'
|
||||
layout.operator("armature.autoside_names", text="AutoName Front/Back").type = 'YAXIS'
|
||||
layout.operator("armature.autoside_names", text="AutoName Top/Bottom").type = 'ZAXIS'
|
||||
layout.operator("armature.autoside_names", text="Auto-Name Left/Right").type = 'XAXIS'
|
||||
layout.operator("armature.autoside_names", text="Auto-Name Front/Back").type = 'YAXIS'
|
||||
layout.operator("armature.autoside_names", text="Auto-Name Top/Bottom").type = 'ZAXIS'
|
||||
layout.operator("armature.flip_names", text="Flip Names")
|
||||
|
||||
|
||||
@@ -5074,7 +5074,7 @@ class VIEW3D_MT_edit_gpencil_transform(Menu):
|
||||
|
||||
|
||||
class VIEW3D_MT_edit_gpencil_showhide(Menu):
|
||||
bl_label = "Show/hide"
|
||||
bl_label = "Show/Hide"
|
||||
|
||||
def draw(self, _context):
|
||||
layout = self.layout
|
||||
@@ -5862,7 +5862,7 @@ class VIEW3D_PT_shading_options(Panel):
|
||||
|
||||
row = col.row()
|
||||
row.active = not xray_active
|
||||
row.prop(shading, "use_dof", text="Depth Of Field")
|
||||
row.prop(shading, "use_dof", text="Depth of Field")
|
||||
|
||||
if shading.type in {'WIREFRAME', 'SOLID'}:
|
||||
row = layout.split()
|
||||
@@ -6553,7 +6553,7 @@ class VIEW3D_PT_snapping(Panel):
|
||||
|
||||
layout = self.layout
|
||||
col = layout.column()
|
||||
col.label(text="Snap to")
|
||||
col.label(text="Snap To")
|
||||
col.prop(tool_settings, "snap_elements", expand=True)
|
||||
|
||||
col.separator()
|
||||
@@ -6561,7 +6561,7 @@ class VIEW3D_PT_snapping(Panel):
|
||||
col.prop(tool_settings, "use_snap_grid_absolute")
|
||||
|
||||
if snap_elements != {'INCREMENT'}:
|
||||
col.label(text="Snap with")
|
||||
col.label(text="Snap With")
|
||||
row = col.row(align=True)
|
||||
row.prop(tool_settings, "snap_target", expand=True)
|
||||
|
||||
|
||||
@@ -681,7 +681,7 @@ class VIEW3D_PT_tools_brush_falloff(Panel, View3DPaintPanel, FalloffPanel):
|
||||
|
||||
class VIEW3D_PT_tools_brush_falloff_frontface(View3DPaintPanel, Panel):
|
||||
bl_context = ".imagepaint" # dot on purpose (access from topbar)
|
||||
bl_label = "Front-face Falloff"
|
||||
bl_label = "Front-Face Falloff"
|
||||
bl_parent_id = "VIEW3D_PT_tools_brush_falloff"
|
||||
bl_options = {'DEFAULT_CLOSED'}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user