theme loading must take place after cwtch.Start so dev/ has time to be appended to path #880

Merged
sarah merged 1 commits from themeFixes2 into trunk 2024-04-16 17:57:30 +00:00
1 changed files with 4 additions and 3 deletions

View File

@ -106,9 +106,10 @@ class FlwtchState extends State<Flwtch> with WindowListener {
// Cwtch.start can take time, we don't want it blocking first splash screen draw, so postpone a smidge to let splash render
Future.delayed(const Duration(milliseconds: 100), () {
print("initState delayed: invoking cwtch.Start()");
cwtch.Start();
cwtch.getCwtchDir().then((dir) {
globalSettings.themeloader.LoadThemes(dir);
cwtch.Start().then( (v) {
cwtch.getCwtchDir().then((dir) {
globalSettings.themeloader.LoadThemes(dir);
});
});
});
print("initState: starting connectivityListener");