fix desktop dark mode

This commit is contained in:
csf
2022-08-09 21:12:55 +08:00
parent 42f27922bf
commit dd8812dd88
2 changed files with 7 additions and 2 deletions
+3 -1
View File
@@ -118,7 +118,9 @@ void window_on_top(int? id) {
windowManager.show();
windowManager.focus();
} else {
WindowController.fromWindowId(id)..focus()..show();
WindowController.fromWindowId(id)
..focus()
..show();
}
}