You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/project/faqs.md
+31
Original file line number
Diff line number
Diff line change
@@ -62,3 +62,34 @@ then a debugger window will pop up. Let's give Z a value while in the debugger:
62
62
(SETQ Z 9)
63
63
```
64
64
now type `OK` and _enter_ (or middle click in the debugger then choose Ok). It will continue the execution as if the fault never happened. It will return the value 10.
65
+
66
+
## I have a large display. Medley is so tiny it's hard to read.
67
+
68
+
(This information is specific to macOS. We need someone who runs Medley under Windows or Linux
69
+
to expand this section.)
70
+
71
+
There are two ways to build and run the Maiko virtual machine/host interface layer
72
+
that underlies Medley: running under X Windows ([XQuartz](https://www.xquartz.org/)) and running in a native window
73
+
using [SDL](https://www.libsdl.org/). Full instructions for building Maiko for X Windows are [here](https://github.com/Interlisp/maiko).
74
+
75
+
To make the Medley window larger on a large display, we first build and run Maiko for SDL.
76
+
Follow the Maiko build instructions above, but instead of
77
+
```
78
+
$ cd maiko/bin
79
+
$ ./makeright x
80
+
```
81
+
82
+
Do these steps:
83
+
```
84
+
$ cd maiko/bin
85
+
$ ./makeright sdl
86
+
```
87
+
88
+
Then we tell Medley to run with pixel scaling (`-ps`_n_): every Medley pixel is rendered as
0 commit comments