diff -r 45d6f5fba016 -r 6046ffa2280f editors/ConfTreeNodeEditor.py --- a/editors/ConfTreeNodeEditor.py Wed Aug 16 12:03:46 2017 +0300 +++ b/editors/ConfTreeNodeEditor.py Wed Aug 16 12:21:05 2017 +0300 @@ -37,19 +37,21 @@ from util.BitmapLibrary import GetBitmap if wx.Platform == '__WXMSW__': - faces = { 'times': 'Times New Roman', - 'mono': 'Courier New', - 'helv': 'Arial', - 'other': 'Comic Sans MS', - 'size': 16, - } + faces = { + 'times': 'Times New Roman', + 'mono': 'Courier New', + 'helv': 'Arial', + 'other': 'Comic Sans MS', + 'size': 16, + } else: - faces = { 'times': 'Times', - 'mono': 'Courier', - 'helv': 'Helvetica', - 'other': 'new century schoolbook', - 'size': 18, - } + faces = { + 'times': 'Times', + 'mono': 'Courier', + 'helv': 'Helvetica', + 'other': 'new century schoolbook', + 'size': 18, + } SCROLLBAR_UNIT = 10