Skip to content

Commit

Permalink
Cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Mar 15, 2022
1 parent a27e6f5 commit fc78d64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/installer-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: ${pythonLocation}/bin/python setup.py ${LITE_FLAG} --dist-dir ${DISTDIR}
- name: Test Application Bundle
if: ${{github.event_name == 'pull_request'}}
run: ./test_app.sh -t 60 -d 30 ${DISTDIR}
run: ./test_app.sh -t 60 ${DISTDIR}
- name: Build Disk Image
run: ${pythonLocation}/bin/python setup.py ${LITE_FLAG} --dist-dir ${DISTDIR} --dmg --no-app
- name: Upload Artifact
Expand Down
4 changes: 2 additions & 2 deletions spyder/plugins/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ def _starting_long_process(self, message):
"""
self._show_status_message(message)
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
# QApplication.processEvents()
QApplication.processEvents()

def _ending_long_process(self, message=""):
"""
Clear main window's status bar and restore mouse cursor.
"""
QApplication.restoreOverrideCursor()
self._show_status_message(message, timeout=2000)
# QApplication.processEvents()
QApplication.processEvents()

def _get_plugin_path(self):
"""Return filesystem path to the root directory of the plugin."""
Expand Down
1 change: 0 additions & 1 deletion spyder/plugins/tours/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,6 @@ def close_tour(self):
self.canvas.set_interaction(False)
self._set_modal(True, [self.tips])
self.canvas.hide()
# self.tips.hide()

try:
# set the last played frame by updating the available tours in
Expand Down

0 comments on commit fc78d64

Please sign in to comment.