Question: How to increase font size for Maple debugger?

Maple debugger uses very small font, different from main worksheet. It seems to use its own font size. Changing font size on the main worksheet has no effect.

For example, if you type

restart;
f:=proc()
return 3;
end proc;

stopat(f);

f();

 

Now the debugger comes up. On my system, windows 7, and Maple 2016, the font is very small. I'd like to make it larger.

How can one do this? I looked at format->style but see nothing related to debugger.

Please Wait...