feat: improve default session widget settings (@brybalicious)

This commit is contained in:
Swann
2020-10-22 17:41:33 +02:00
parent f90c12b27f
commit 4e2377cd7f

View File

@ -243,14 +243,14 @@ class SessionPrefs(bpy.types.AddonPreferences):
description="Adjust the session widget text scale", description="Adjust the session widget text scale",
min=7, min=7,
max=90, max=90,
default=15, default=25,
) )
presence_hud_hpos: bpy.props.FloatProperty( presence_hud_hpos: bpy.props.FloatProperty(
name="Horizontal position", name="Horizontal position",
description="Adjust the session widget horizontal position", description="Adjust the session widget horizontal position",
min=1, min=1,
max=90, max=90,
default=3, default=1,
step=1, step=1,
subtype='PERCENTAGE', subtype='PERCENTAGE',
) )
@ -259,7 +259,7 @@ class SessionPrefs(bpy.types.AddonPreferences):
description="Adjust the session widget vertical position", description="Adjust the session widget vertical position",
min=1, min=1,
max=94, max=94,
default=1, default=3,
step=1, step=1,
subtype='PERCENTAGE', subtype='PERCENTAGE',
) )