~ubuntu-branches/ubuntu/lucid/exaile/lucid

« back to all changes in this revision

Viewing changes to plugins/ipconsole/ipconsoleprefs.py

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2010-02-12 19:51:01 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100212195101-8jt3tculxcl92e6v
Tags: 0.3.1~b1-0ubuntu1
* New upstream release.
* Adjust exaile.install for new plugins.
* debian/control:
 - Drop unneeded python-dev Build-Dep.
 - Bump Standards-Version to 3.8.4 
* debian/rules: No empty po files to delete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
name = _('IPython Console')
23
23
basedir = os.path.dirname(os.path.realpath(__file__))
24
 
glade = os.path.join(basedir, 'ipconsole_prefs.glade')
 
24
ui = os.path.join(basedir, 'ipconsole_prefs.ui')
25
25
 
26
26
class OpacityPreference(widgets.ScalePrefsItem):
27
27
    default = 80.0
28
28
    name = 'plugin/ipconsole/opacity'
29
29
 
30
30
class FontPreference(widgets.FontButtonPrefsItem):
31
 
    default = 'Luxi Mono 10'
 
31
    default = 'Monospace 10'
32
32
    name = 'plugin/ipconsole/font'