We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a68425 commit c0e848dCopy full SHA for c0e848d
lib/pages/setting/setting_view.dart
@@ -66,7 +66,7 @@ class SettingPage extends StatelessWidget {
66
Checkbox(
67
value: state.playKeepWeak,
68
onChanged: (val) {
69
- logic.changeLaunchPlay(val ?? false);
+ logic.changePlayKeepWeak(val ?? false);
70
},
71
),
72
],
scripts/build_wechat.dart
@@ -4,5 +4,6 @@ void main(List<String> arguments) async {
4
final buildArgs = [...arguments]..add('--wechat');
5
build_tools.useMiniTex = true;
6
build_tools.useNoFontCanvasKit = true;
7
+ build_tools.licenseGrant = true;
8
build_tools.main(buildArgs);
9
}
0 commit comments