# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1617903265 0 # Node ID a80df2e7195dbb07f0e76487d2ccb5ca49c19bf0 # Parent 070337dd4ef7841ed6b4b2d33fbd048d09cc0850 GTK4: Add a comment with the information about striped controls. This may not be usable, but I want to save it here for potential future use. diff -r 070337dd4ef7 -r a80df2e7195d gtk4/dw.c --- a/gtk4/dw.c Wed Apr 07 19:07:46 2021 +0000 +++ b/gtk4/dw.c Thu Apr 08 17:34:25 2021 +0000 @@ -5718,6 +5718,11 @@ */ void API dw_container_set_stripe(HWND handle, unsigned long oddcolor, unsigned long evencolor) { + /* TODO: If we want to accomplish this, according to mclasen we can do it + * with CSS on a GtkListBox widget using the following CSS: + * "row: nth-child(even) { background: red; }" + * However he does not recommend we do it for performance reasons. + */ } /*