GUI: dont attempt animating steps when not debugging
This commit is contained in:
parent
3c737758d4
commit
9d609dd5ae
|
@ -1676,12 +1676,14 @@ void MainWindow::setFavouriteItemShortcut(int type, const QString & name, const
|
|||
|
||||
void MainWindow::animateIntoSlot()
|
||||
{
|
||||
DbgFunctions()->AnimateCommand("StepInto");
|
||||
if(DbgIsDebugging())
|
||||
DbgFunctions()->AnimateCommand("StepInto");
|
||||
}
|
||||
|
||||
void MainWindow::animateOverSlot()
|
||||
{
|
||||
DbgFunctions()->AnimateCommand("StepOver");
|
||||
if(DbgIsDebugging())
|
||||
DbgFunctions()->AnimateCommand("StepOver");
|
||||
}
|
||||
|
||||
void MainWindow::animateCommandSlot()
|
||||
|
|
Loading…
Reference in New Issue