mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	fix jrowes lazy sorting
This commit is contained in:
		
							parent
							
								
									31a9fdb00b
								
							
						
					
					
						commit
						30c6c37d6c
					
				
					 1 changed files with 2 additions and 3 deletions
				
			
		|  | @ -161,8 +161,7 @@ QVariant ComboBoxProxyModel::data(const QModelIndex& idx, int role) const { | |||
| } | ||||
| 
 | ||||
| bool ComboBoxProxyModel::lessThan(const QModelIndex& left, const QModelIndex& right) const { | ||||
|     // TODO(jroweboy): Sort by game title not filename
 | ||||
|     auto leftData = left.data(Qt::DisplayRole).toString(); | ||||
|     auto rightData = right.data(Qt::DisplayRole).toString(); | ||||
|     auto leftData = left.data(GameListItemPath::TitleRole).toString(); | ||||
|     auto rightData = right.data(GameListItemPath::TitleRole).toString(); | ||||
|     return leftData.compare(rightData) < 0; | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue