mirror of
https://codeberg.org/TheGreatMcPain/yuzu.git
synced 2025-03-18 08:41:49 +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->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->setUniformRowHeights(true);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue