remove noisy printfs

This commit is contained in:
Carsten Haitzler 2020-02-28 18:46:45 +00:00
parent ab549eb064
commit c7bb445f1a
2 changed files with 0 additions and 3 deletions

View File

@ -161,7 +161,6 @@ _cb_http_complete(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
if (pe)
{
eina_strbuf_append_length(sb, p, pe - p);
printf("FOUND IMG\n");
ok = EINA_TRUE;
}
}
@ -175,7 +174,6 @@ _cb_http_complete(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
if (pe)
{
eina_strbuf_append_length(sb, p, pe - p);
printf("FOUND IMG2\n");
ok = EINA_TRUE;
}
}

View File

@ -93,7 +93,6 @@ _cb_audio(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
Inf *inf = evas_object_data_get(data, "inf");
Evas_Object *sl = elm_object_part_content_get(inf->lay, "rage.vol.swallow");
double vol = video_volume_get(inf->vid);
printf("%1.2f\n", vol);
elm_slider_value_set(sl, vol * 100);
win_title_update(data);
}