updated; remember to set max frames

This commit is contained in:
Jared Bruni
2021-08-25 14:35:40 -07:00
parent 8e5288de5d
commit 5b79ea8a89
2 changed files with 3 additions and 3 deletions

View File

@@ -103,7 +103,7 @@ AC_MainWindow::AC_MainWindow(QWidget *parent) : QMainWindow(parent) {
createMenu();
speed_index = 0;
loading = false;
ac::setMaxAllocated(300);
cap_camera = new CaptureCamera(this);
cap_camera->setParent(this);
@@ -372,7 +372,7 @@ void AC_MainWindow::createControls() {
progress_bar->setMaximum(100);
progress_bar->hide();
menu_cat->setCurrentIndex(1);
Log(tr("Max frames set to 300; set accordingly based on desired ram.\nIntertwine Rows and other filters that require more than 300 frames will not work until max is set.\n"));
}
void AC_MainWindow::createMenu() {

View File

@@ -17,7 +17,7 @@ void OptionsWindow::createControls() {
op_intensity->setGeometry(110, 40, 50, 25);
QLabel *label_z = new QLabel(tr("Max Frames: "), this);
label_z->setGeometry(10, 70, 100, 25);
op_max_frames = new QLineEdit("1500", this);
op_max_frames = new QLineEdit("300", this);
op_max_frames->setGeometry(110,70, 50, 25);
QLabel *label_q = new QLabel(tr("Delay: "), this);