Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/2f466751ca15ee334bc8fbb694dacc2ed33e9bd2
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/2f466751ca15ee334bc8fbb694dacc2ed33e9bd2
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/2f466751ca15ee334bc8fbb694dacc2ed33e9bd2

The branch, master has been updated
       via  2f466751ca15ee334bc8fbb694dacc2ed33e9bd2 (commit)
      from  7ca3308bd12db9c55509acf1c7f9f75561e34d7c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=2f466751ca15ee334bc8fbb694dacc2ed33e9bd2
commit 2f466751ca15ee334bc8fbb694dacc2ed33e9bd2
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    Ensure X DPI set correctly

diff --git a/frontends/amiga/font.c b/frontends/amiga/font.c
index 6317262..e69ff55 100644
--- a/frontends/amiga/font.c
+++ b/frontends/amiga/font.c
@@ -37,7 +37,7 @@ static ULONG ami_xdpi = 72;
 
 ULONG ami_font_dpi_get_devicedpi(void)
 {
-       return ami_devicedpi;
+       return (ami_xdpi << 16) | ami_devicedpi;
 }
 
 ULONG ami_font_dpi_get_xdpi(void)


-----------------------------------------------------------------------

Summary of changes:
 frontends/amiga/font.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontends/amiga/font.c b/frontends/amiga/font.c
index 6317262..e69ff55 100644
--- a/frontends/amiga/font.c
+++ b/frontends/amiga/font.c
@@ -37,7 +37,7 @@ static ULONG ami_xdpi = 72;
 
 ULONG ami_font_dpi_get_devicedpi(void)
 {
-       return ami_devicedpi;
+       return (ami_xdpi << 16) | ami_devicedpi;
 }
 
 ULONG ami_font_dpi_get_xdpi(void)


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to