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:
parent
342b4e865c
commit
08464e902f
1 changed files with 1 additions and 1 deletions
|
@ -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])))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue