feat(chat): make messagePreviewMaxLines configurable, with default 128
This commit is contained in:
parent
42a8c4d4c6
commit
bcc4d4d204
3 changed files with 11 additions and 2 deletions
|
|
@ -9,6 +9,9 @@ import 'package:shared_preferences/shared_preferences.dart';
|
|||
|
||||
enum AppSettings<T> {
|
||||
textMessageMaxLength<int>('textMessageMaxLength', 16384),
|
||||
|
||||
/// Max lines for unselected HTML/text bubbles; 0 = unlimited (no fade).
|
||||
messagePreviewMaxLines<int>('chat.fluffy.message_preview_max_lines', 128),
|
||||
audioRecordingNumChannels<int>('audioRecordingNumChannels', 1),
|
||||
audioRecordingAutoGain<bool>('audioRecordingAutoGain', true),
|
||||
audioRecordingEchoCancel<bool>('audioRecordingEchoCancel', false),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue