when verve loses focus the colors are reset to white background and black text instead of the system's color verve 0.3.5 (gentoo)
This makes verve pretty much unusable on dark desktop themes, who wants to have a big white field on their otherwise black panel?
In verve-plugin.c: line 136, 175: replace default_style = gtk_widget_get_default_style(); with default_style = gtk_widget_get_style(verve -> input); This fix is a bit of a lazy hack because both default_style and style will now get the same value. If someone wanted to write a patch replacing any instance of gtk_widget_get_default_style with gtk_widget_get_style, that would be good, but to fix this bug, without regards to code efficiency, all one needs to do is change the value of default_style. If someone wanted to append this fix with a fullblown patch, that would be appriciated.
Fixed in 2712210