Bug fix for small memory leak on window init.

This commit is contained in:
Matthew Budd 2020-07-09 21:38:31 -04:00
parent 67b7c34576
commit 26e320b163
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ void consoleWin_t::createMainMenu(void)
sprintf( stmp, "%i", i );
state[i] = new QAction(tr(stmp));
state[i] = new QAction(tr(stmp), this);
state[i]->setCheckable(true);
group->addAction(state[i]);