about summary refs log tree commit diff stats
path: root/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua15
1 files changed, 13 insertions, 2 deletions
diff --git a/main.lua b/main.lua
index 3fb69f1..e7b6429 100644
--- a/main.lua
+++ b/main.lua
@@ -87,11 +87,14 @@ function App.initialize(arg)
 
   -- maximize window
   love.window.setMode(0, 0)  -- maximize
-  App.screen.width, App.screen.height = love.window.getMode()
+  App.screen.width, App.screen.height, App.screen.flags = love.window.getMode()
   -- shrink slightly to account for window decoration
   App.screen.width = App.screen.width-100
   App.screen.height = App.screen.height-100
-  love.window.setMode(App.screen.width, App.screen.height)
+  App.screen.flags.resizable = true
+  App.screen.flags.minwidth = math.min(App.screen.width, 200)
+  App.screen.flags.minheight = math.min(App.screen.width, 200)
+  love.window.updateMode(App.screen.width, App.screen.height, App.screen.flags)
 
   initialize_font_settings(20)
 
@@ -110,6 +113,14 @@ function App.initialize(arg)
 
 end  -- App.initialize
 
+function love.resize(w, h)
+--?   print(("Window resized to width: %d and height: %d."):format(w, h))
+  App.screen.width, App.screen.height = w, h
+  Line_width = math.min(40*App.width(Em), App.screen.width-50)
+  -- Should I Text.redraw_all() here to reset text fragments? It doesn't seem
+  -- to be needed, based on repeatedly resizing the window up and down.
+end
+
 function initialize_font_settings(font_height)
   Font_height = font_height
   love.graphics.setFont(love.graphics.newFont(Font_height))
586 - factorial checks commandline to run tests' href='/akkartik/mu/commit/subx/apps/factorial.subx?h=main&id=3f8597bc3d44ab26536b080ae00e3b66202137d6'>3f8597bc ^
8c580ba1 ^
3f8597bc ^


6ff9ce26 ^


9372c16c ^
6ff9ce26 ^


6ff9ce26 ^


e07a3f28 ^
8c580ba1 ^
6ff9ce26 ^
e07a3f28 ^
6ff9ce26 ^

8c580ba1 ^
6ff9ce26 ^

8c580ba1 ^
6ff9ce26 ^

a5a9c2af ^
6ff9ce26 ^





e07a3f28 ^
6ff9ce26 ^



caaeccd6 ^


8c580ba1 ^
caaeccd6 ^
8c580ba1 ^
caaeccd6 ^






2b36eee9 ^
caaeccd6 ^
8c580ba1 ^
caaeccd6 ^







2b36eee9 ^
caaeccd6 ^
8c580ba1 ^
caaeccd6 ^






3f8597bc ^


































caaeccd6 ^
3f8597bc ^
8c580ba1 ^



caaeccd6 ^



3f8597bc ^
caaeccd6 ^

3f8597bc ^
caaeccd6 ^


9372c16c ^
3f8597bc ^
8c580ba1 ^



caaeccd6 ^



3f8597bc ^



6ff9ce26 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184