1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00

fix MRU order

This commit is contained in:
seanpringle 2012-06-30 04:28:44 +10:00
parent 342b4e865c
commit 08464e902f

View file

@ -718,7 +718,7 @@ void run_switcher(Window root, int mode, int fmode)
&& type == XA_WINDOW)
{
// calc widths of fields
for (i = 0; i < nwins; i++)
for (i = nwins-1; i > -1; i--)
{
if ((c = window_client(wins[i])))
{