summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Wasserka <neobrainx@gmail.com>2015-01-01 18:21:14 +0100
committerTony Wasserka <neobrainx@gmail.com>2015-01-01 18:21:14 +0100
commit84d11d7ff62c267c7d6fd31f899cb345dc890658 (patch)
tree06c392883ef889701817c373e3895c87710a8f0d
parentMerge pull request #265 from Subv/socu (diff)
parentSet object name for the graphics debugger (diff)
downloadyuzu-84d11d7ff62c267c7d6fd31f899cb345dc890658.tar
yuzu-84d11d7ff62c267c7d6fd31f899cb345dc890658.tar.gz
yuzu-84d11d7ff62c267c7d6fd31f899cb345dc890658.tar.bz2
yuzu-84d11d7ff62c267c7d6fd31f899cb345dc890658.tar.lz
yuzu-84d11d7ff62c267c7d6fd31f899cb345dc890658.tar.xz
yuzu-84d11d7ff62c267c7d6fd31f899cb345dc890658.tar.zst
yuzu-84d11d7ff62c267c7d6fd31f899cb345dc890658.zip
-rw-r--r--src/citra_qt/debugger/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics.cpp b/src/citra_qt/debugger/graphics.cpp
index 6ff4c290d..9633d367e 100644
--- a/src/citra_qt/debugger/graphics.cpp
+++ b/src/citra_qt/debugger/graphics.cpp
@@ -72,7 +72,7 @@ void GPUCommandStreamItemModel::OnGXCommandFinishedInternal(int total_command_co
GPUCommandStreamWidget::GPUCommandStreamWidget(QWidget* parent) : QDockWidget(tr("Graphics Debugger"), parent)
{
- // TODO: set objectName!
+ setObjectName("GraphicsDebugger");
GPUCommandStreamItemModel* command_model = new GPUCommandStreamItemModel(this);
g_debugger.RegisterObserver(command_model);