Fix missing default value for radius

This fixes the missing default value for radius, when the setting was not already used.
This commit is contained in:
Alezia Kurdis 2023-02-21 21:03:48 -05:00 committed by GitHub
parent e212a746d3
commit 4791943c15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
var radius = Settings.getValue("entityListDefaultRadius");
var radius = Settings.getValue("entityListDefaultRadius", 300);
tablet.screenChanged.connect(onScreenChanged);