Skip to content

Commit ce66bd4

Browse files
committed
PythonEngine now uses last known Python version; Memo font is now Consolas, size 10
1 parent b93531a commit ce66bd4

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

Demos/Demo31/Unit1.dfm

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ object Form1: TForm1
3333
Width = 721
3434
Height = 395
3535
Align = alClient
36+
Font.Charset = DEFAULT_CHARSET
37+
Font.Color = clWindowText
38+
Font.Height = -13
39+
Font.Name = 'Consolas'
40+
Font.Pitch = fpVariable
41+
Font.Style = []
3642
Lines.Strings = (
3743

3844
'from spam import DelphiVersion, MainForm, DVar, CreateComponent,' +
@@ -493,7 +499,8 @@ object Form1: TForm1
493499
' unittest.main()'
494500
' except SystemExit:'
495501
' pass')
496-
ScrollBars = ssVertical
502+
ParentFont = False
503+
ScrollBars = ssBoth
497504
TabOrder = 0
498505
WordWrap = False
499506
end
@@ -521,14 +528,17 @@ object Form1: TForm1
521528
Width = 721
522529
Height = 169
523530
Align = alTop
531+
Font.Charset = DEFAULT_CHARSET
532+
Font.Color = clWindowText
533+
Font.Height = -13
534+
Font.Name = 'Consolas'
535+
Font.Pitch = fpVariable
536+
Font.Style = []
537+
ParentFont = False
524538
ScrollBars = ssBoth
525539
TabOrder = 2
526540
end
527541
object PyEngine: TPythonEngine
528-
DllName = 'python38.dll'
529-
APIVersion = 1013
530-
RegVersion = '3.8'
531-
UseLastKnownVersion = False
532542
IO = PythonGUIInputOutput1
533543
Left = 16
534544
Top = 16

0 commit comments

Comments
 (0)