Fix up arrow pointing directions

This commit is contained in:
2025-03-16 00:12:40 +01:00
parent ee85131da6
commit 1ef81eeb17

View File

@@ -534,7 +534,7 @@ class _LoadOrderPageState extends State<LoadOrderPage> {
message:
'Loads after other mods:\n${mod.loadAfter.join('\n')}',
child: Icon(
Icons.arrow_back,
Icons.arrow_downward,
color: Colors.blue,
size: 24,
),
@@ -545,7 +545,7 @@ class _LoadOrderPageState extends State<LoadOrderPage> {
message:
'Loads before other mods:\n${mod.loadBefore.join('\n')}',
child: Icon(
Icons.arrow_forward,
Icons.arrow_upward,
color: Colors.green,
size: 24,
),