From 1ef81eeb179095e1998c92823ce2ffaf2e1214f1 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 16 Mar 2025 00:12:40 +0100 Subject: [PATCH] Fix up arrow pointing directions --- lib/main.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index b0496fd..fd68dfc 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -534,7 +534,7 @@ class _LoadOrderPageState extends State { 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 { message: 'Loads before other mods:\n${mod.loadBefore.join('\n')}', child: Icon( - Icons.arrow_forward, + Icons.arrow_upward, color: Colors.green, size: 24, ),