hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=c668f54514bd802599155bfaab85ac19d8b81854

commit c668f54514bd802599155bfaab85ac19d8b81854
Author: ChunEon Park <her...@hermet.pe.kr>
Date:   Thu Feb 26 10:55:59 2015 +0900

    bin/live_edit: update info text format
---
 src/bin/live_edit.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/live_edit.c b/src/bin/live_edit.c
index be44904..c3082bf 100644
--- a/src/bin/live_edit.c
+++ b/src/bin/live_edit.c
@@ -93,14 +93,14 @@ info_text_update(live_data *ld)
    config_view_size_get(&lw, &lh);
 
    //Rel1
-   snprintf(buf, sizeof(buf), "%.2f %.2f (%d %d)",
+   snprintf(buf, sizeof(buf), "%.2f %.2f (%d, %d)",
             ld->part_info.rel1_x, ld->part_info.rel1_y,
             (int) round(ld->part_info.rel1_x * (double) lw),
             (int) round(ld->part_info.rel1_y * (double) lh));
   evas_object_text_text_set(ld->info_text[Info_Text_Rel1], buf);
 
    //Rel2
-   snprintf(buf, sizeof(buf), "%.2f %.2f (%d %d)",
+   snprintf(buf, sizeof(buf), "%.2f %.2f (%d, %d)",
             ld->part_info.rel2_x, ld->part_info.rel2_y,
             (int) round(ld->part_info.rel2_x * (double) lw),
             (int) round(ld->part_info.rel2_y * (double) lh));

-- 


Reply via email to