From d563372a91a1b1dcb552f6571828ccf081ea3f42 Mon Sep 17 00:00:00 2001 From: hashiguchi <118793426+hashiguchi736@users.noreply.github.com> Date: Sat, 28 Sep 2024 22:52:05 +0900 Subject: [PATCH] Change the value of kMinQuality to 5 (#9508) * Change the minimum value of the bitrate slider to 5 Signed-off-by: hashiguchi * Change the value of kMinQuality to 5 Signed-off-by: hashiguchi --------- Signed-off-by: hashiguchi --- flutter/lib/consts.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flutter/lib/consts.dart b/flutter/lib/consts.dart index 17d5cec27..1be9c7712 100644 --- a/flutter/lib/consts.dart +++ b/flutter/lib/consts.dart @@ -201,7 +201,7 @@ const double kMinFps = 5; const double kDefaultFps = 30; const double kMaxFps = 120; -const double kMinQuality = 10; +const double kMinQuality = 5; const double kDefaultQuality = 50; const double kMaxQuality = 100; const double kMaxMoreQuality = 2000; @@ -571,4 +571,4 @@ extension WindowsTargetExt on int { WindowsTarget get windowsVersion => getWindowsTarget(this); } -const kCheckSoftwareUpdateFinish = 'check_software_update_finish'; \ No newline at end of file +const kCheckSoftwareUpdateFinish = 'check_software_update_finish';