n key - in music mode have it drop win size back to fit the albumart

if you press n - it'll normalize the window size given the current
media and now for audio it'l go "Square" or the size it'd use if you
launched it to begin with on a music file.
This commit is contained in:
Carsten Haitzler 2020-04-27 13:33:07 +01:00
parent c9a15ab2e8
commit d41b44b07a
1 changed files with 12 additions and 0 deletions

View File

@ -191,6 +191,18 @@ key_handle(Evas_Object *win, Evas_Event_Key_Down *ev)
if (browser_visible()) return;
video_ratio_size_get(inf->vid, &w, &h);
if ((w > 1) && (h > 1)) evas_object_resize(win, w, h);
else
{
Evas_Coord mw = 1, mh = 1;
elm_layout_signal_emit(inf->lay, "pref,size,on", "rage");
edje_object_message_signal_process(elm_layout_edje_get(inf->lay));
edje_object_size_min_calc(elm_layout_edje_get(inf->lay), &mw, &mh);
elm_layout_signal_emit(inf->lay, "pref,size,off", "rage");
w = mw;
h = mh;
if ((w > 1) && (h > 1)) evas_object_resize(win, w, h);
}
}
else if (!strcmp(ev->keyname, "backslash"))
{