working on Favorites window

This commit is contained in:
lostjared
2018-12-28 04:39:37 -08:00
parent be7019b3d7
commit ba7699e4d3
4 changed files with 19 additions and 1 deletions

View File

@@ -443,6 +443,10 @@ void AC_MainWindow::createMenu() {
controls_pause->setEnabled(false);
controls_step->setEnabled(false);
controls_snapshot->setEnabled(false);
set_newnames = new QAction(tr("Set Favorites"), this);
connect(set_newnames, SIGNAL(triggered()), this, SLOT(show_Favorites()));
controls_menu->addAction(set_newnames);
}
void AC_MainWindow::resetIndex() {
@@ -1266,3 +1270,7 @@ void AC_MainWindow::menuFilterChanged(int index) {
}
loading = false;
}
void AC_MainWindow::show_Favorites() {
define_window->show();
}