Skip to content

Commit

Permalink
Don't make our JupyterKernel and PythonShell plugins selectable (#2245).
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Dec 2, 2019
1 parent 74a77cb commit a3e3622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -38,7 +38,7 @@ PLUGININFO_FUNC JupyterKernelPluginInfo()
descriptions.insert("en", QString::fromUtf8(R"(the <a href="https://jupyter.org/">Jupyter</a> kernel plugin.)"));
descriptions.insert("fr", QString::fromUtf8(R"(le plugin du noyau <a href="https://jupyter.org/">Jupyter</a>.)"));

return new PluginInfo(PluginInfo::Category::Miscellaneous, true, true,
return new PluginInfo(PluginInfo::Category::Miscellaneous, false, true,
QStringList() << "Core" << "SimulationSupport",
descriptions);
}
Expand Down
Expand Up @@ -39,7 +39,7 @@ PLUGININFO_FUNC PythonShellPluginInfo()
descriptions.insert("en", QString::fromUtf8("the Python shell plugin."));
descriptions.insert("fr", QString::fromUtf8("le plugin shell Python."));

return new PluginInfo(PluginInfo::Category::Miscellaneous, true, true,
return new PluginInfo(PluginInfo::Category::Miscellaneous, false, true,
QStringList() << "Core" << "PythonQtSupport" << "SimulationSupport",
descriptions);
}
Expand Down

0 comments on commit a3e3622

Please sign in to comment.