Browse Source

Apply code formatting to all files

Co-authored-by: djeada <[email protected]>
copilot-swe-agent[bot] 2 months ago
parent
commit
fa5e5c41e2
1 changed files with 16 additions and 16 deletions
  1. 16 16
      ui/qml/LoadGamePanel.qml

+ 16 - 16
ui/qml/LoadGamePanel.qml

@@ -185,14 +185,14 @@ Item {
                                 }
                                 }
                                 if (count === 0)
                                 if (count === 0)
                                     append({
                                     append({
-                                        "slotName": "No saves found",
-                                        "title": "",
-                                        "timestamp": 0,
-                                        "mapName": "",
-                                        "playTime": "",
-                                        "thumbnail": "",
-                                        "isEmpty": true
-                                    });
+                                    "slotName": "No saves found",
+                                    "title": "",
+                                    "timestamp": 0,
+                                    "mapName": "",
+                                    "playTime": "",
+                                    "thumbnail": "",
+                                    "isEmpty": true
+                                });
 
 
                             }
                             }
 
 
@@ -402,14 +402,14 @@ Item {
                     loadListModel.remove(slotIndex);
                     loadListModel.remove(slotIndex);
                     if (loadListModel.count === 0)
                     if (loadListModel.count === 0)
                         loadListModel.append({
                         loadListModel.append({
-                            "slotName": "No saves found",
-                            "title": "",
-                            "timestamp": 0,
-                            "mapName": "",
-                            "playTime": "",
-                            "thumbnail": "",
-                            "isEmpty": true
-                        });
+                        "slotName": "No saves found",
+                        "title": "",
+                        "timestamp": 0,
+                        "mapName": "",
+                        "playTime": "",
+                        "thumbnail": "",
+                        "isEmpty": true
+                    });
 
 
                     if (loadListView.selectedIndex >= loadListModel.count)
                     if (loadListView.selectedIndex >= loadListModel.count)
                         loadListView.selectedIndex = loadListModel.count > 0 && !loadListModel.get(0).isEmpty ? loadListModel.count - 1 : -1;
                         loadListView.selectedIndex = loadListModel.count > 0 && !loadListModel.get(0).isEmpty ? loadListModel.count - 1 : -1;