mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	citra-qt/command list: monospace font on windows
This commit is contained in:
		
							parent
							
								
									7a132e2a77
								
							
						
					
					
						commit
						cd06f5cedb
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		|  | @ -300,7 +300,9 @@ GPUCommandListWidget::GPUCommandListWidget(QWidget* parent) : QDockWidget(tr("Pi | ||||||
| 
 | 
 | ||||||
|     list_widget = new QTreeView; |     list_widget = new QTreeView; | ||||||
|     list_widget->setModel(model); |     list_widget->setModel(model); | ||||||
|     list_widget->setFont(QFont("monospace")); |     QFont font("monospace"); | ||||||
|  |     font.setStyleHint(QFont::Monospace); // Automatic fallback to a monospace font on on platforms without a font called "monospace"
 | ||||||
|  |     list_widget->setFont(font); | ||||||
|     list_widget->setRootIsDecorated(false); |     list_widget->setRootIsDecorated(false); | ||||||
|     list_widget->setUniformRowHeights(true); |     list_widget->setUniformRowHeights(true); | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue