Skip to content

Commit

Permalink
Back porting shot module improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffHoogland committed Aug 6, 2015
1 parent f0de7ad commit 1eae66e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/modules/shot/e_mod_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,9 @@ static Eina_Bool
_upload_progress_cb(void *data __UNUSED__, int ev_type __UNUSED__, void *event)
{
Ecore_Con_Event_Url_Progress *ev = event;
if (ev->url_con != url_up) return EINA_TRUE;
//if (ev->url_con != url_up) return EINA_TRUE;
if (ev->url_con != url_up) return ECORE_CALLBACK_RENEW;

if (o_label)
{
char buf[1024];
Expand All @@ -390,7 +392,7 @@ _upload_progress_cb(void *data __UNUSED__, int ev_type __UNUSED__, void *event)
E_FREE(buf_total);
e_widget_label_text_set(o_label, buf);
}
return EINA_FALSE;
return ECORE_CALLBACK_RENEW;
}

static Eina_Bool
Expand Down

0 comments on commit 1eae66e

Please sign in to comment.