Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarafei Praliaskouski <komzpa@mapswith.me>2013-05-23 22:44:31 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:55:12 +0300
commitbe57ad95b92cddc260c24d0a2d6606dacb671d7e (patch)
tree8dd042d0fbe4743e2d0690548cbc9d9b1a0364c5 /skin_generator
parentb5810a83f5cb08db188976bbf5abb0313b719160 (diff)
[android] support for XXHDPI screens
Diffstat (limited to 'skin_generator')
-rw-r--r--skin_generator/skin_generator.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/skin_generator/skin_generator.cpp b/skin_generator/skin_generator.cpp
index 1e2bb8ab7f..836223078f 100644
--- a/skin_generator/skin_generator.cpp
+++ b/skin_generator/skin_generator.cpp
@@ -294,6 +294,8 @@ namespace tools
size = QSize(36, 36);
else if (skinName.rfind("-xhdpi") != string::npos)
size = QSize(48, 48);
+ else if (skinName.rfind("-xxhdpi") != string::npos)
+ size = QSize(72, 72);
}
}