From cf6866d5e6d9362dc38a279fe196306c015113cf Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 3 Aug 2023 22:42:50 -0400 Subject: [PATCH] improve message in about LAMMPS dialog --- tools/lammps-gui/lammpsgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/lammps-gui/lammpsgui.cpp b/tools/lammps-gui/lammpsgui.cpp index 3902e89abb..58dff4f49c 100644 --- a/tools/lammps-gui/lammpsgui.cpp +++ b/tools/lammps-gui/lammpsgui.cpp @@ -539,13 +539,13 @@ void LammpsGui::about() { std::string version = "This is LAMMPS-GUI version " LAMMPS_GUI_VERSION; if (lammps.has_plugin()) { - version += " - LAMMPS linked dynamically"; + version += " - LAMMPS library loaded as plugin"; if (!plugin_path.empty()) { version += " from file "; version += plugin_path; } } else { - version += " - LAMMPS linked statically"; + version += " - LAMMPS library linked to executable"; } std::string info = "LAMMPS is currently running. LAMMPS config info not available.";