Page 1 of 1

Fontsize of the debugwindow / editorgadget

Posted: Thu Mar 30, 2023 10:00 am
by Stefan
How can I change the Fontsize of the debugwindow / debugwindoweditorgadget?

Re: Fontsize of the debugwindow / editorgadget

Posted: Thu Mar 30, 2023 10:47 am
by Peter
Stefan wrote: Thu Mar 30, 2023 10:00 am How can I change the Fontsize of the debugwindow / debugwindoweditorgadget?

Code: Select all

LoadFont(0, "Arial", 36)
Define DebugEditorGadget
! v_debugeditorgadget = spider.debug.editorGadget;
SetGadgetFont(DebugEditorGadget, FontID(0))
Debug "Hello World!"

Re: Fontsize of the debugwindow / editorgadget

Posted: Thu Mar 30, 2023 11:19 am
by Stefan
Great! :)