mirror of
https://github.com/tommyxchow/frosty.git
synced 2025-08-06 17:48:14 +08:00
Reduce default message spacing
This commit is contained in:
@ -106,7 +106,7 @@ abstract class _SettingsStoreBase with Store {
|
||||
static const defaultBadgeScale = 1.0;
|
||||
static const defaultEmoteScale = 1.0;
|
||||
static const defaultMessageScale = 1.0;
|
||||
static const defaultMessageSpacing = 10.0;
|
||||
static const defaultMessageSpacing = 8.0;
|
||||
static const defaultFontSize = 12.0;
|
||||
|
||||
// Message appearance defaults
|
||||
|
@ -24,7 +24,7 @@ SettingsStore _$SettingsStoreFromJson(Map<String, dynamic> json) =>
|
||||
..badgeScale = (json['badgeScale'] as num?)?.toDouble() ?? 1.0
|
||||
..emoteScale = (json['emoteScale'] as num?)?.toDouble() ?? 1.0
|
||||
..messageScale = (json['messageScale'] as num?)?.toDouble() ?? 1.0
|
||||
..messageSpacing = (json['messageSpacing'] as num?)?.toDouble() ?? 10.0
|
||||
..messageSpacing = (json['messageSpacing'] as num?)?.toDouble() ?? 8.0
|
||||
..fontSize = (json['fontSize'] as num?)?.toDouble() ?? 12.0
|
||||
..useReadableColors = json['useReadableColors'] as bool? ?? true
|
||||
..showDeletedMessages = json['showDeletedMessages'] as bool? ?? false
|
||||
|
Reference in New Issue
Block a user