provide syntax highlighting color schemes for light and dark themes
This commit is contained in:
@ -1431,7 +1431,11 @@ void LammpsGui::setFont(const QFont &newfont)
|
||||
void LammpsGui::about()
|
||||
{
|
||||
std::string version = "This is LAMMPS-GUI version " LAMMPS_GUI_VERSION;
|
||||
version += " using Qt version " QT_VERSION_STR "\n";
|
||||
version += " using Qt version " QT_VERSION_STR;
|
||||
if (is_light_theme())
|
||||
version += " using light theme\n";
|
||||
else
|
||||
version += " using dark theme\n";
|
||||
if (lammps.has_plugin()) {
|
||||
version += "LAMMPS library loaded as plugin";
|
||||
if (!plugin_path.empty()) {
|
||||
|
||||
Reference in New Issue
Block a user