Skip to content
Snippets Groups Projects
Commit 54412146 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

NoAutoRun

parent f8ff53b7
No related branches found
No related tags found
No related merge requests found
......@@ -907,7 +907,8 @@ void onelab_cb(Fl_Widget *w, void *data)
onelab::client *c = it->second;
if(c->getName() == "Gmsh" || // local Gmsh client
c->getName() == "Listen" || // unknown client connecting through "-listen"
c->getName() == "GmshRemote") // distant post-processing Gmsh client
c->getName() == "GmshRemote" || // distant post-processing Gmsh client
c->getName().find("NoAutoRun") != std::string::npos) // client name contains "NoAutoRun"
continue;
if(action != "initialize") onelabUtils::guessModelName(c);
onelab::string o(c->getName() + "/Action", action);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment