wrong Fonts with Linux/Dabian and View
[1/3] from: rene::villa-cossio::com at: 27-Dec-2003 17:32
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
--
Rene Schrader-Boelsche rene<at>villa-cossio.com
Heidberg 12 www.villa-cossio.com
D-24641 Stuvenborn +49 171 5482906<
[2/3] from: g:santilli:tiscalinet:it at: 27-Dec-2003 18:01
Hi Rene,
On Saturday, December 27, 2003, 5:32:41 PM, you wrote:
RSB> I use rebol/view (1.2.1.4.2) together with a Linux/Debian(woody) System.
RSB> After installing/deinstalling some packages I see the wrong Fontsize for
RSB> the Desktop-Icons and Fields. The letters are too big. How can I change the
RSB> fonts manually?
There's a problem with fonts on /View 1.2.1.4.2. Try 1.2.10.4.2:
http://www.reboltech.com/downloads/view1210042.gz
should work much better. (Notice that the View Desktop has some
problems in this beta version.)
Regards,
Gabriele.
--
Gabriele Santilli <[g--santilli--tiscalinet--it]> -- REBOL Programmer
Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/
[3/3] from: juan-carlos:miranda:wanadoo at: 27-Dec-2003 18:26
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: