mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	ui: Fix Game Compatibility list translations
Reported by GillianMC on Discord. Looks to be a small quirk in the QT API. setText(QObject::tr(status.text)); bringing up QObject breaks the link with the GameListItemCompat
This commit is contained in:
		
							parent
							
								
									47c4f31c8d
								
							
						
					
					
						commit
						ed0e9e9593
					
				
					 2 changed files with 3 additions and 3 deletions
				
			
		|  | @ -86,7 +86,7 @@ | |||
|     <item row="4" column="0"> | ||||
|      <widget class="QRadioButton" name="radioButton_Great"> | ||||
|       <property name="text"> | ||||
|        <string>Great </string> | ||||
|        <string>Great</string> | ||||
|       </property> | ||||
|      </widget> | ||||
|     </item> | ||||
|  |  | |||
|  | @ -264,8 +264,8 @@ public: | |||
|         } | ||||
|         const CompatStatus& status = iterator->second; | ||||
|         setData(compatibility, CompatNumberRole); | ||||
|         setText(QObject::tr(status.text)); | ||||
|         setToolTip(QObject::tr(status.tooltip)); | ||||
|         setText(tr(status.text)); | ||||
|         setToolTip(tr(status.tooltip)); | ||||
|         setData(CreateCirclePixmapFromColor(status.color), Qt::DecorationRole); | ||||
|     } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue