[Problem]
1. [TNINE-4369] Share-panel window round corner and close button are not visible.
2. [TNINE-4276] Text fields are relatively smaller than the icon.
[Cause & Measure]
Cause : Window width set to a static larger size and text size was set to relatively smaller.
Measure : Window width have have been set as display width and increased text size.
Change-Id: I49f007952966bf143e9bb7985841f42e3c90869f
Signed-off-by: Azijur Rahman Sheatu <azijur.r@samsung.com>
description {
state: "default" 0.0;
image { normal: share_panel_bg.png;}
- min: 1280 245;
- max: 1280 245;
+ min: 0 245;
+ max: -1 245;
align: 0.5 1;
visible: 1;
}
description {
state: "default" 0.0;
image { normal: share_panel_bg_fhd.png;}
- min: 1920 368;
- max: 1920 368;
+ min: 0 368;
+ max: -1 368;
align: 0.5 1;
visible: 1;
}
retv_if(!info->name, NULL);
if (!strcmp(part, "elm.text")) {
if (!utils_is_fhd()) {
- return g_strdup_printf("<align=center><font_size=%d>%s</font_size></align>", 12, info->name);
- } else {
return g_strdup_printf("<align=center><font_size=%d>%s</font_size></align>", 18, info->name);
+ } else {
+ return g_strdup_printf("<align=center><font_size=%d>%s</font_size></align>", 24, info->name);
}
}
return NULL;