Hi. :)
I had the same problem some time ago.
I don't remember where I found this neither who has done it, but you can
set the
font used by rebol by adding this to your user.r file :
set-default-font: func [
"sets default font for /View"
font-blk [block! word!] "block of font attributes"
] [
system/standard/face/font: make system/standard/face/font font-blk
system/view/vid/vid-face/font: make system/view/vid/vid-face/font
font-blk
foreach [w s] system/view/vid/vid-styles [s/font: make s/font font-blk]
]
set-default-font [
name: "charter" ; put here the font you want.
size: 14 ; there the size you want.
]
This should do the trick. :)
Bouba
Rene Schrader-Boelsche wrote:
>Hi there,
>
>I use rebol/view (1.2.1.4.2) together with a Linux/Debian(woody) System.
>After installing/deinstalling some packages I see the wrong Fontsize for
>the Desktop-Icons and Fields. The letters are too big. How can I change the
>fonts manually?
>
>cheers
>Rene
>
>
>
--
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.