We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b372755 commit 5fd6533Copy full SHA for 5fd6533
1 file changed
src/PythonPlugin.cpp
@@ -687,10 +687,12 @@ void PythonPlugin::populatePluginSubMenu()
687
void PythonPlugin::handlePythonExecutionStarted()
688
{
689
m_pluginsMenu->setEnabled(false);
690
+ QApplication::setOverrideCursor(Qt::CursorShape::BusyCursor);
691
}
692
void PythonPlugin::handlePythonExecutionFinished()
693
694
m_pluginsMenu->setEnabled(true);
695
+ QApplication::restoreOverrideCursor();
696
697
698
void PythonPlugin::finalizeInterpreter()
0 commit comments