[Libreoffice-commits] core.git: vcl/unx
Caolán McNamara
caolanm at redhat.com
Wed Mar 4 06:58:21 PST 2015
vcl/unx/gtk/window/gtksalframe.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 9b63256d59c300731fa4d37670b119e6296e8ab4
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Mar 4 14:56:49 2015 +0000
flush surface after 'draw'
on f21 otherwise we see nothing under gtk3, f20 doesn't need it FWIW.
Change-Id: I409c828644bff793f4a82ecc7d4cad4da1eeb8da
diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx
index 0418f17..93cfdbb 100644
--- a/vcl/unx/gtk/window/gtksalframe.cxx
+++ b/vcl/unx/gtk/window/gtksalframe.cxx
@@ -3495,6 +3495,8 @@ gboolean GtkSalFrame::signalDraw( GtkWidget*, cairo_t *cr, gpointer frame )
pThis->m_nDuringRender--;
+ cairo_surface_flush(cairo_get_target(cr));
+
return FALSE;
}
#endif // GTK_CHECK_VERSION(3,0,0)
More information about the Libreoffice-commits
mailing list