sync to release version

This commit is contained in:
Axel Kohlmeyer
2024-08-29 20:42:48 -04:00
parent b5e21701ee
commit 570c9d190f
61 changed files with 3 additions and 1258 deletions

View File

@ -1432,45 +1432,6 @@ void LammpsGui::setFont(const QFont &newfont)
}
}
void LammpsGui::view_chart()
{
QSettings settings;
if (chartwindow) {
if (chartwindow->isVisible()) {
chartwindow->hide();
settings.setValue("viewchart", false);
} else {
chartwindow->show();
settings.setValue("viewchart", true);
}
}
}
void LammpsGui::view_log()
{
QSettings settings;
if (logwindow) {
if (logwindow->isVisible()) {
logwindow->hide();
settings.setValue("viewlog", false);
} else {
logwindow->show();
settings.setValue("viewlog", true);
}
}
}
void LammpsGui::view_image()
{
if (imagewindow) {
if (imagewindow->isVisible()) {
imagewindow->hide();
} else {
imagewindow->show();
}
}
}
void LammpsGui::about()
{
std::string version = "This is LAMMPS-GUI version " LAMMPS_GUI_VERSION;
@ -1888,11 +1849,6 @@ void LammpsGui::howto()
QUrl(QString("https://docs.lammps.org%1Howto_lammps_gui.html").arg(docver)));
}
void LammpsGui::howto()
{
QDesktopServices::openUrl(QUrl("https://docs.lammps.org/Howto_lammps_gui.html"));
}
void LammpsGui::defaults()
{
QSettings settings;