Quote:
Originally Posted by Vroni
how can i change the font in the plugin launcher window?
|
Since you can use
print() to render HTML in the Plugin Runner window, you could wrap your messages in a minimal HTML file and specify a monospace font as an inline style attribute. For example:
Code:
<html>
<body style="font-family: monospace">
<pre>
Column 1 Column 2 Column 3
Value 1 Value 2 Value 3
</pre>
</body>
</html>