I am almost 1000% positive this commit is not doing a single thing. But whatever has happened - Buttons are automagically working for some really odd reason.

SVN revision: 82745
This commit is contained in:
Stephen Houston 2013-01-14 07:18:49 +00:00
parent f977bc0868
commit ce345d8434
2 changed files with 4 additions and 4 deletions

View File

@ -846,8 +846,8 @@ ephoto_single_browser_add(Ephoto *ephoto, Evas_Object *parent)
sb->bar = elm_box_add(sb->main);
elm_box_horizontal_set(sb->bar, EINA_TRUE);
elm_box_homogeneous_set(sb->bar, EINA_FALSE);
evas_object_size_hint_weight_set(sb->bar, EVAS_HINT_EXPAND, 0.0);
evas_object_size_hint_align_set(sb->bar, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_size_hint_weight_set(sb->bar, 0.0, 0.0);
evas_object_size_hint_align_set(sb->bar, EVAS_HINT_FILL, 0.0);
evas_object_show(sb->bar);
elm_box_pack_end(sb->main, sb->bar);

View File

@ -504,8 +504,8 @@ ephoto_thumb_browser_add(Ephoto *ephoto, Evas_Object *parent)
tb->bar = elm_box_add(tb->main);
elm_box_horizontal_set(tb->bar, EINA_TRUE);
elm_box_homogeneous_set(tb->bar, EINA_FALSE);
evas_object_size_hint_weight_set(tb->bar, EVAS_HINT_EXPAND, 0.0);
evas_object_size_hint_align_set(tb->bar, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_size_hint_weight_set(tb->bar, 0.0, 0.0);
evas_object_size_hint_align_set(tb->bar, EVAS_HINT_FILL, 0.0);
evas_object_show(tb->bar);
elm_box_pack_end(tb->main, tb->bar);