add option to restart the LAMMPS instance to "Run" menu

This commit is contained in:
Axel Kohlmeyer
2025-01-16 21:43:36 -05:00
parent 1636a11054
commit cf7695e99f
5 changed files with 14 additions and 1 deletions

View File

@ -111,6 +111,7 @@ private slots:
void findandreplace();
void run_buffer() { do_run(true); }
void run_file() { do_run(false); }
void restart_lammps() { lammps.close(); };
void edit_variables();
void render_image();
@ -183,6 +184,7 @@ class TutorialWizard : public QWizard {
public:
TutorialWizard(int ntutorial, QWidget *parent = nullptr);
void accept() override;
private:
int _ntutorial;
};