Skip to content
Snippets Groups Projects
Commit 2a65cb50 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Lower flush count to 3.

This is my happy place on the desktop system running xfce4... any
higher, and it interferes with how I manage my windows.

Hopefully, this value convers the initialization portion perfectly
on all systems (hah!).
parent fd411e56
Branches
Tags
1 merge request!455Update branch with changes from master
...@@ -2323,7 +2323,7 @@ void x11_event_thread(void *args) ...@@ -2323,7 +2323,7 @@ void x11_event_thread(void *args)
case X11_LOCAL_FLUSH: case X11_LOCAL_FLUSH:
x11.XFlush(dpy); x11.XFlush(dpy);
if (!got_first_resize) { if (!got_first_resize) {
if (++flush_count > 5) if (++flush_count > 3)
got_first_resize = true; got_first_resize = true;
} }
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment