From: Nikola Pavlica <pavlica.nikola@gmail.com>
In January (I think), I suggested a fix for the constant refresh rate issue in QEMU despite VMs being able to render graphics at a framerate much higher than that.
Here's the link to the patch in question:
The issue lies if the target system (that the package is build on) has a higher version of GTK, let's say 3.24, it fails the #ifdef macro and thus does not include the changes that I've made. I've noticed this issue under the ArchLinux build system, which can be fixed by just using the included macro for checking GTK versions.
Also being that this is a regression and not a plain bugfix, is this mergable into stable?
Signed-off-by: Nikola Pavlica <pavlica.nikola@gmail.com>
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -1968,7 +1968,7 @@ static GtkWidget *gd_create_menu_machine(GtkDisplayState *s)
*/
static int gd_refresh_rate_millihz(GtkWidget *window)
{
-#ifdef GDK_VERSION_3_22
+#if GTK_CHECK_VERSION(3, 22, 0)
GdkWindow *win = gtk_widget_get_window(window);
if (win) {