fix start cb missing issue for frameview
authorHyungdeuk Kim <hd3.kim@samsung.com>
Thu, 17 Jan 2013 02:37:41 +0000 (11:37 +0900)
committerHyungdeuk Kim <hd3.kim@samsung.com>
Thu, 17 Jan 2013 02:37:41 +0000 (11:37 +0900)
packaging/ui-gadget-1.spec
src/manager.c

index 447f51f5ced100d78dc537da2555fdfb1433674c..40e6af6278917e36fc910e8a6dfb7b14d8b3c9e3 100755 (executable)
@@ -1,7 +1,7 @@
 
 Name:       ui-gadget-1
 Summary:    UI Gadget Library
-Version:    0.1.12
+Version:    0.1.13
 Release:    1
 Group:      System/Libraries
 License:    Apache License, Version 2.0
index 435b466742bc13f487ce322a6eca4aa22a0e4caf..03ecda65a3059edc51ad7e7fa905d50a8d1b5896 100755 (executable)
@@ -440,8 +440,10 @@ static int ugman_ug_create(void *data)
                        return -1;
                }
                if (ug->mode == UG_MODE_FULLVIEW) {
-                       if (eng_ops && eng_ops->create)
+                       if (eng_ops && eng_ops->create) {
+                               //change start cb function call after transition,finished for fullview
                                ug_man.conform = eng_ops->create(ug_man.win, ug, ugman_ug_start);
+                       }
                }
                cbs = &ug->cbs;
 
@@ -452,6 +454,10 @@ static int ugman_ug_create(void *data)
        }
 
        ugman_ug_event(ug, ug_man.last_rotate_evt);
+
+       if(ug->mode == UG_MODE_FRAMEVIEW)
+               ugman_ug_start(ug);
+
        ugman_tree_dump(ug_man.root);
 
        return 0;