rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=b1cb881942f3d0949f779daa8eac4d268233751b

commit b1cb881942f3d0949f779daa8eac4d268233751b
Author: Vyacheslav Reutskiy <[email protected]>
Date:   Fri Feb 17 09:00:36 2017 +0200

    image_manager: apply min size for property on first start
    
    @fix
    
    Change-Id: I155cb6031950f30130dcbc71ebf48c9f9a890b36
---
 src/bin/ui/image_manager.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/bin/ui/image_manager.c b/src/bin/ui/image_manager.c
index 8a16bb6..2ed1597 100644
--- a/src/bin/ui/image_manager.c
+++ b/src/bin/ui/image_manager.c
@@ -1094,10 +1094,14 @@ image_manager_add(void)
    elm_layout_theme_set(mng.layout, "layout", "image_manager", "default");
    mng.panes = elm_panes_add(mng.win);
    elm_object_part_content_set(mng.panes, "left", mng.layout);
+   elm_panes_content_right_size_set(mng.panes, 0);
+   elm_panes_content_right_min_size_set(mng.panes, 400);
    mng.property_panes = elm_panes_add(mng.win);
    elm_panes_horizontal_set(mng.property_panes, true);
    elm_object_part_content_set(mng.panes, "right", mng.property_panes);
    elm_object_part_content_set(mng.property_panes, "right", 
ap.property.image_manager);
+   elm_panes_content_left_size_set(mng.property_panes, 0);
+   elm_panes_content_left_min_size_set(mng.property_panes, 400);
 #endif
 
    if (!gic)

-- 


Reply via email to