Add a setting to preserve custom font scaling setting
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Sarah Jamie Lewis 2023-05-09 12:16:49 -07:00
parent 05cc347ba2
commit b81353c128
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,7 @@ type GlobalSettings struct {
UseTorCache bool
TorCacheDir string
BlodeuweddPath string
FontScaling float64
}
var DefaultGlobalSettings = GlobalSettings{
@ -81,6 +82,7 @@ var DefaultGlobalSettings = GlobalSettings{
UseTorCache: false,
TorCacheDir: "",
BlodeuweddPath: "",
FontScaling: 1.0, // use the system pixel scaling default
}
func InitGlobalSettingsFile(directory string, password string) (*GlobalSettingsFile, error) {