summaryrefslogtreecommitdiff
path: root/beos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-03-08 18:48:46 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-03-08 18:48:46 +0000
commita183951c233483d33c7490b8a27ab48b5ba4768a (patch)
tree9643d8fd0ebe42abb48cee5ad6d257af2e749b76 /beos
parent5412d7c1b04b4326d1fcd5a2e633ec0f6cff81de (diff)
downloadnetsurf-a183951c233483d33c7490b8a27ab48b5ba4768a.tar.gz
netsurf-a183951c233483d33c7490b8a27ab48b5ba4768a.tar.bz2
Don't scale text plots in front end (BeOS).
svn path=/trunk/netsurf/; revision=11938
Diffstat (limited to 'beos')
-rw-r--r--beos/beos_font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/beos/beos_font.cpp b/beos/beos_font.cpp
index 500b7df88..eca2fab9e 100644
--- a/beos/beos_font.cpp
+++ b/beos/beos_font.cpp
@@ -259,7 +259,7 @@ bool nsfont_paint(const plot_font_style_t *fstyle,
//view->SetScale() XXX
//printf("nsfont_paint: Size: %f\n", font.Size());
- size = (float)(font.Size() * nsbeos_plot_get_scale());
+ size = (float)font.Size();
#warning XXX use scale
view->SetFont(&font);