##// END OF EJS Templates
Add Ctrl-+/- to increase/decrease font size....
Add Ctrl-+/- to increase/decrease font size. I'm not sure yet how to change the window size automatically to keep the window at a constant row/columns size, but at least now users can adjust the font size, which is a major usability issue. Also, fixed minor typo in a variable name.

File last commit:

r2460:e8303d57
r3081:f0980fb5
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')