Skip to content

Commit

Permalink
Fix little typo in ShortcutsSummaryDialog class name
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaverde committed Nov 30, 2016
1 parent 5feeaa4 commit 464de6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spyder/app/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2625,8 +2625,8 @@ def apply_shortcuts(self):

@Slot()
def show_shortcuts_dialog(self):
from spyder.widgets.shortcutssummary import ShortCutsSummaryDialog
dlg = ShortCutsSummaryDialog(None)
from spyder.widgets.shortcutssummary import ShortcutsSummaryDialog
dlg = ShortcutsSummaryDialog(None)
dlg.exec_()

# -- Open files server
Expand Down
4 changes: 2 additions & 2 deletions spyder/widgets/shortcutssummary.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
MAX_FONT_SIZE = 16
MIN_FONT_SIZE = 8

class ShortCutsSummaryDialog(QDialog):
class ShortcutsSummaryDialog(QDialog):
"""
Dialog window listing the spyder and plugins shortcuts.
Expand Down Expand Up @@ -138,7 +138,7 @@ def get_screen_resolution(self):
def test(): # pragma: no cover
from spyder.utils.qthelpers import qapplication
app = qapplication()
dlg_shortcuts = ShortCutsSummaryDialog(None)
dlg_shortcuts = ShortcutsSummaryDialog(None)
dlg_shortcuts.show()
app.exec_()

Expand Down

0 comments on commit 464de6b

Please sign in to comment.