Read nine patch info from *.9.png files as well 43/129943/2
authorJi-hoon Lee <dalton.lee@samsung.com>
Thu, 18 May 2017 11:45:21 +0000 (20:45 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Thu, 18 May 2017 12:10:48 +0000 (21:10 +0900)
Change-Id: I3165ac8d76d962c3a67ef33d9cdf233927bfe043

scl/gwes/efl/sclgraphics-efl.cpp

index d9926dd..e661f92 100644 (file)
@@ -141,8 +141,9 @@ static sclboolean check_nine_patch_png_file(const char *image_path)
     for (sclint loop = strlen(image_path);!found && loop > 0;loop--) {
         if (image_path[loop] == '.') {
             found = TRUE;
-            if (loop >= 2) { // for checking prefix ".#"
-                if (strcasecmp(image_path + loop - 2, ".#.png") == 0) {
+            if (loop >= 2) { // for checking prefix ".#" and ".9"
+                if (strcasecmp(image_path + loop - 2, ".#.png") == 0 ||
+                    strcasecmp(image_path + loop - 2, ".9.png") == 0) {
                     return TRUE;
                 }
             }