synchronize LAMMPS-GUI with upstream

This commit is contained in:
Axel Kohlmeyer
2025-04-03 22:39:38 -04:00
parent 6025dbd46f
commit 2d56b01153
8 changed files with 9 additions and 146 deletions

View File

@ -22,7 +22,6 @@
#include "lammpsrunner.h"
#include "logwindow.h"
#include "preferences.h"
#include "runwham.h"
#include "setvariables.h"
#include "slideshow.h"
#include "stdcapture.h"
@ -216,7 +215,6 @@ LammpsGui::LammpsGui(QWidget *parent, const QString &filename) :
connect(ui->actionRun_File, &QAction::triggered, this, &LammpsGui::run_file);
connect(ui->actionStop_LAMMPS, &QAction::triggered, this, &LammpsGui::stop_run);
connect(ui->actionRestart_LAMMPS, &QAction::triggered, this, &LammpsGui::restart_lammps);
// connect(ui->actionRun_WHAM, &QAction::triggered, this, &LammpsGui::run_wham);
connect(ui->actionSet_Variables, &QAction::triggered, this, &LammpsGui::edit_variables);
connect(ui->actionImage, &QAction::triggered, this, &LammpsGui::render_image);
connect(ui->actionLAMMPS_Tutorial, &QAction::triggered, this, &LammpsGui::tutorial_web);
@ -1863,13 +1861,6 @@ void LammpsGui::edit_variables()
}
}
void LammpsGui::run_wham()
{
RunWHAM do_run(this);
do_run.setFont(font());
do_run.exec();
}
void LammpsGui::findandreplace()
{
FindAndReplace find(ui->textEdit, this);