Merge pull request #6927 from Bigpet/displwnd

comment out display list debug window
This commit is contained in:
xsacha 2014-09-21 22:47:07 +10:00
commit 1ab398aafb
2 changed files with 8 additions and 3 deletions

View File

@ -11,7 +11,8 @@
#include "base/display.h"
#include "mainwindow.h"
#include "UI/HostTypes.h"
#include "GPU/GLES/VertexDecoder.h"
//commented out until someone bothers to maintain it
//#include "GPU/GLES/VertexDecoder.h"
Debugger_DisplayList::Debugger_DisplayList(DebugInterface *_cpu, MainWindow* mainWindow_, QWidget *parent) :
QDialog(parent),
@ -1622,6 +1623,8 @@ void Debugger_DisplayList::on_zoompBtn_clicked()
void Debugger_DisplayList::UpdateVertexInfo()
{
//commented out until someone bothers to maintain it
#if 0
ui->vertexData->clear();
QTreeWidgetItem* item = ui->vertexList->currentItem();
@ -1691,6 +1694,7 @@ void Debugger_DisplayList::UpdateVertexInfo()
{
ui->vertexData->resizeColumnToContents(i);
}
#endif
}
void Debugger_DisplayList::on_vertexList_itemClicked(QTreeWidgetItem *item, int column)

View File

@ -474,8 +474,9 @@ void MainWindow::createMenus()
debugMenu->addSeparator();
debugMenu->add(new MenuAction(this, SLOT(disasmAct()), QT_TR_NOOP("Disassembly"), Qt::CTRL + Qt::Key_D))
->addDisableState(UISTATE_MENU);
debugMenu->add(new MenuAction(this, SLOT(dpyListAct()), QT_TR_NOOP("Display List...")))
->addDisableState(UISTATE_MENU);
//commented out until someone bothers to maintain it
//debugMenu->add(new MenuAction(this, SLOT(dpyListAct()), QT_TR_NOOP("Display List...")))
// ->addDisableState(UISTATE_MENU);
debugMenu->add(new MenuAction(this, SLOT(consoleAct()), QT_TR_NOOP("Log Console")))
->addDisableState(UISTATE_MENU);
debugMenu->add(new MenuAction(this, SLOT(memviewAct()), QT_TR_NOOP("Memory View")))