diff --git a/gfx/thebes/src/gfxPlatformGtk.cpp b/gfx/thebes/src/gfxPlatformGtk.cpp index c3c02a9cb2df..7e7da0dc27ab 100644 --- a/gfx/thebes/src/gfxPlatformGtk.cpp +++ b/gfx/thebes/src/gfxPlatformGtk.cpp @@ -549,8 +549,10 @@ gfxPlatformGtk::InitDisplayCaps() if (StringEndsWith(buffer, NS_LITERAL_CSTRING("RX-51"))) { gfxPlatform::sDPI = 265; // It's an N900 } - else if (StringEndsWith(buffer, NS_LITERAL_CSTRING("RX-48"))) { - gfxPlatform::sDPI = 225; // It's an N810 + else if (StringEndsWith(buffer, NS_LITERAL_CSTRING("RX-44")) || + StringEndsWith(buffer, NS_LITERAL_CSTRING("RX-48")) || + StringEndsWith(buffer, NS_LITERAL_CSTRING("RX-34"))) { + gfxPlatform::sDPI = 225; // It's an N810/N800 } } }