Bumped Gradle to 8.14 and fixed build warnings

This commit is contained in:
2026-07-05 00:17:20 +02:00
parent b14e8c8ea2
commit 35e144799e
2 changed files with 2 additions and 4 deletions
@@ -117,9 +117,7 @@ class ModuleSortBody extends StatelessWidget {
)
.values
.toList(),
onReorder: (oldIndex, newIndex) {
if (newIndex > oldIndex) newIndex -= 1;
onReorderItem: (oldIndex, newIndex) {
var order = settings.val().modulesSettings.moduleOrder.toList();
final movedModule = order.removeAt(oldIndex);
order.insert(newIndex, movedModule);