Skip to content

Commit

Permalink
External Console: Minor fixes after PR #2226
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Apr 6, 2015
1 parent 1671342 commit e8fdf09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spyderlib/plugins/externalconsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def setup_page(self):
('PyQt4', 'pyqt'),
('PySide', 'pyside'),
]
qt_group = QGroupBox(_("Qt (PyQt/PySide)"))
qt_group = QGroupBox(_("Qt Bindings"))
qt_setapi_box = self.create_combobox(
_("Qt-Python bindings library selection:"), opts,
'qt/api', default='default',
Expand Down Expand Up @@ -322,10 +322,10 @@ def setup_page(self):
mpl_group = QGroupBox(_("Matplotlib"))
mpl_backend_box = newcb('', 'matplotlib/backend/enabled', True)
mpl_backend_edit = self.create_lineedit(_("GUI backend:"),
'matplotlib/backend/value', "Qt5Agg",
'matplotlib/backend/value',
tip=_("Set the GUI toolkit used by <br>"
"Matplotlib to show figures "
"(default: Qt5Agg)"),
"(default: Qt4Agg)"),
alignment=Qt.Horizontal)
mpl_backend_box.toggled.connect(mpl_backend_edit.setEnabled)
mpl_backend_layout = QHBoxLayout()
Expand All @@ -343,7 +343,7 @@ def setup_page(self):
# ETS Group
ets_group = QGroupBox(_("Enthought Tool Suite"))
ets_label = QLabel(_("Enthought Tool Suite (ETS) supports "
"PyQt5 (qt5) and wxPython (wx) graphical "
"PyQt4 (qt4) and wxPython (wx) graphical "
"user interfaces."))
ets_label.setWordWrap(True)
ets_edit = self.create_lineedit(_("ETS_TOOLKIT:"), 'ets_backend',
Expand Down

0 comments on commit e8fdf09

Please sign in to comment.