Skip to content

Commit b061723

Browse files
committed
PythonEngine now uses last known Python version; Memo font is now Consolas, size 10; increased form height
1 parent e9ac153 commit b061723

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

Demos/Demo29/Unit1.dfm

+14-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ object Form1: TForm1
22
Left = 218
33
Top = 18
44
Caption = 'Form1'
5-
ClientHeight = 743
5+
ClientHeight = 809
66
ClientWidth = 668
77
Color = clBtnFace
88
Font.Charset = DEFAULT_CHARSET
@@ -43,6 +43,11 @@ object Form1: TForm1
4343
Top = 471
4444
Width = 657
4545
Height = 330
46+
Font.Charset = DEFAULT_CHARSET
47+
Font.Color = clWindowText
48+
Font.Height = -13
49+
Font.Name = 'Consolas'
50+
Font.Style = []
4651
Lines.Strings = (
4752
'# This demo requires the module pillow (PIL)'
4853

@@ -68,14 +73,22 @@ object Form1: TForm1
6873
' stream = BytesIO()'
6974
' image.save(stream, image.format)'
7075
' return stream.getvalue()')
76+
ParentFont = False
7177
ScrollBars = ssBoth
7278
TabOrder = 2
79+
WordWrap = False
7380
end
7481
object Memo2: TMemo
7582
Left = 8
7683
Top = 352
7784
Width = 657
7885
Height = 113
86+
Font.Charset = DEFAULT_CHARSET
87+
Font.Color = clWindowText
88+
Font.Height = -13
89+
Font.Name = 'Consolas'
90+
Font.Style = []
91+
ParentFont = False
7992
ScrollBars = ssBoth
8093
TabOrder = 3
8194
end
@@ -93,10 +106,6 @@ object Form1: TForm1
93106
end
94107
object PythonEngine1: TPythonEngine
95108
AutoUnload = False
96-
DllName = 'python36.dll'
97-
APIVersion = 1013
98-
RegVersion = '3.6'
99-
UseLastKnownVersion = False
100109
IO = PythonGUIInputOutput1
101110
Left = 168
102111
Top = 624

0 commit comments

Comments
 (0)