Skip to content

Commit

Permalink
Disable IPython check for windows. Refs #5987
Browse files Browse the repository at this point in the history
This should avoid the 32-bit issue of not being able to start MantidPlot
  • Loading branch information
martyngigg committed Oct 23, 2012
1 parent 0ca562d commit d14a6aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Code/Mantid/MantidPlot/src/ApplicationWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16389,7 +16389,11 @@ void ApplicationWindow::showScriptInterpreter()

bool ApplicationWindow::testForIPython()
{
#ifdef _WIN32
return true;
#else
return runPythonScript("from ipython_plugin import MantidPlot_IPython",false, true,false);
#endif
}

void ApplicationWindow::launchIPythonConsole()
Expand Down

0 comments on commit d14a6aa

Please sign in to comment.