Skip to content

Commit 2d2ffda

Browse files
author
wonder
committed
use monospaced font in python console
git-svn-id: http://svn.osgeo.org/qgis/trunk@12731 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 0f88266 commit 2d2ffda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/console.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ def __init__(self,parent=None):
103103
self.setMinimumSize(30, 30)
104104
self.setUndoRedoEnabled(False)
105105
self.setAcceptRichText(False)
106-
#monofont = QFont("Bitstream Vera Sans Mono", 10)
107-
#self.setFont(monofont)
106+
monofont = QFont("Bitstream Vera Sans Mono", 10)
107+
self.setFont(monofont)
108108

109109
self.buffer = []
110110

0 commit comments

Comments
 (0)