Переглянути джерело

Merge pull request #3795 from vitor-k/fix-folder

Fix "Port citra-emu/citra#4956: "Fixes to game list sorting" #3611"
bunnei 6 роки тому
батько
коміт
378aed07e9
1 змінених файлів з 7 додано та 7 видалено
  1. 7 7
      src/yuzu/game_list_p.h

+ 7 - 7
src/yuzu/game_list_p.h

@@ -126,13 +126,6 @@ public:
 
 
         return GameListItem::data(role);
         return GameListItem::data(role);
     }
     }
-
-    /**
-     * Override to prevent automatic sorting.
-     */
-    bool operator<(const QStandardItem& other) const override {
-        return false;
-    }
 };
 };
 
 
 class GameListItemCompat : public GameListItem {
 class GameListItemCompat : public GameListItem {
@@ -279,6 +272,13 @@ public:
         return static_cast<int>(dir_type);
         return static_cast<int>(dir_type);
     }
     }
 
 
+    /**
+     * Override to prevent automatic sorting between folders and the addDir button.
+     */
+    bool operator<(const QStandardItem& other) const override {
+        return false;
+    }
+
 private:
 private:
     GameListItemType dir_type;
     GameListItemType dir_type;
 };
 };