From 4e2377cd7fc16758a88229b3720f5745db93bb96 Mon Sep 17 00:00:00 2001 From: Swann Date: Thu, 22 Oct 2020 17:41:33 +0200 Subject: [PATCH] feat: improve default session widget settings (@brybalicious) --- multi_user/preferences.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/multi_user/preferences.py b/multi_user/preferences.py index b86c791..7b12153 100644 --- a/multi_user/preferences.py +++ b/multi_user/preferences.py @@ -243,14 +243,14 @@ class SessionPrefs(bpy.types.AddonPreferences): description="Adjust the session widget text scale", min=7, max=90, - default=15, + default=25, ) presence_hud_hpos: bpy.props.FloatProperty( name="Horizontal position", description="Adjust the session widget horizontal position", min=1, max=90, - default=3, + default=1, step=1, subtype='PERCENTAGE', ) @@ -259,7 +259,7 @@ class SessionPrefs(bpy.types.AddonPreferences): description="Adjust the session widget vertical position", min=1, max=94, - default=1, + default=3, step=1, subtype='PERCENTAGE', )