Added a Run PPU half frame icon (that doesn't look like a stop icon) for debugger run 128 lines.
This commit is contained in:
parent
490637e937
commit
0e64829682
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 1.5 KiB |
|
@ -20,6 +20,7 @@
|
|||
<file>icons/StepOver.png</file>
|
||||
<file>icons/StepOut.png</file>
|
||||
<file>icons/RunPpuFrame.png</file>
|
||||
<file>icons/RunPpuHalfFrame.png</file>
|
||||
<file>icons/RunPpuScanline.png</file>
|
||||
<file>icons/arrow-cursor.png</file>
|
||||
<file>icons/JumpTarget.png</file>
|
||||
|
|
|
@ -610,7 +610,7 @@ QMenuBar *ConsoleDebugger::buildMenuBar(void)
|
|||
act = new QAction(tr("Run &128 Lines"), this);
|
||||
act->setShortcut(QKeySequence( tr("F8") ) );
|
||||
act->setStatusTip(tr("Run 128 Lines"));
|
||||
act->setIcon( QIcon(":icons/RunPpuFrame.png") );
|
||||
act->setIcon( QIcon(":icons/RunPpuHalfFrame.png") );
|
||||
connect( act, SIGNAL(triggered()), this, SLOT(debugRunLine128CB(void)) );
|
||||
|
||||
debugMenu->addAction(act);
|
||||
|
@ -846,7 +846,7 @@ QToolBar *ConsoleDebugger::buildToolBar(void)
|
|||
act = new QAction(tr("Run &128 Lines (F8)"), this);
|
||||
//act->setShortcut(QKeySequence( tr("F8") ) );
|
||||
act->setStatusTip(tr("Run 128 Lines"));
|
||||
act->setIcon( QIcon(":icons/RunPpuFrame.png") );
|
||||
act->setIcon( QIcon(":icons/RunPpuHalfFrame.png") );
|
||||
connect( act, SIGNAL(triggered()), this, SLOT(debugRunLine128CB(void)) );
|
||||
|
||||
toolBar->addAction(act);
|
||||
|
|
Loading…
Reference in New Issue