diff options
| author | 2015-08-24 18:30:11 -0700 | |
|---|---|---|
| committer | 2015-08-24 18:30:11 -0700 | |
| commit | ac0104b8b0584023cfbd7a4800f1ca1db890188f (patch) | |
| tree | a1651d48113413e2de1e6e309362511b1ff7ffa8 /src/citra_qt/debugger/graphics_cmdlists.cpp | |
| parent | Merge pull request #1063 from Subv/hw_renderer_debug_fb (diff) | |
| parent | Integrate the MicroProfile profiling library (diff) | |
| download | yuzu-ac0104b8b0584023cfbd7a4800f1ca1db890188f.tar.gz yuzu-ac0104b8b0584023cfbd7a4800f1ca1db890188f.tar.xz yuzu-ac0104b8b0584023cfbd7a4800f1ca1db890188f.zip | |
Merge pull request #1048 from yuriks/microprofile
Integrate the MicroProfile profiling library
Diffstat (limited to 'src/citra_qt/debugger/graphics_cmdlists.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index 35a3140b2..025434687 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -14,6 +14,8 @@ | |||
| 14 | #include <QSpinBox> | 14 | #include <QSpinBox> |
| 15 | #include <QComboBox> | 15 | #include <QComboBox> |
| 16 | 16 | ||
| 17 | #include "citra_qt/util/util.h" | ||
| 18 | |||
| 17 | #include "common/vector_math.h" | 19 | #include "common/vector_math.h" |
| 18 | 20 | ||
| 19 | #include "video_core/debug_utils/debug_utils.h" | 21 | #include "video_core/debug_utils/debug_utils.h" |
| @@ -303,9 +305,7 @@ GPUCommandListWidget::GPUCommandListWidget(QWidget* parent) : QDockWidget(tr("Pi | |||
| 303 | 305 | ||
| 304 | list_widget = new QTreeView; | 306 | list_widget = new QTreeView; |
| 305 | list_widget->setModel(model); | 307 | list_widget->setModel(model); |
| 306 | QFont font("monospace"); | 308 | list_widget->setFont(GetMonospaceFont()); |
| 307 | font.setStyleHint(QFont::Monospace); // Automatic fallback to a monospace font on on platforms without a font called "monospace" | ||
| 308 | list_widget->setFont(font); | ||
| 309 | list_widget->setRootIsDecorated(false); | 309 | list_widget->setRootIsDecorated(false); |
| 310 | list_widget->setUniformRowHeights(true); | 310 | list_widget->setUniformRowHeights(true); |
| 311 | 311 | ||