editors/ConfTreeNodeEditor.py
changeset 1747 6046ffa2280f
parent 1745 f9d32913bad4
child 1748 ba5f64fe0e00
--- 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