From b4ad105c1dae5afa1ae62c803dca3b677c47aa07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 7 Feb 2019 10:26:37 +0200 Subject: [PATCH] basic-tutorial-5: Stop using deprecated GTK API Disabling double buffering is deprecated since quite a while. --- tutorials/src/bin/basic-tutorial-5.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tutorials/src/bin/basic-tutorial-5.rs b/tutorials/src/bin/basic-tutorial-5.rs index 018322b43..7168dc14a 100644 --- a/tutorials/src/bin/basic-tutorial-5.rs +++ b/tutorials/src/bin/basic-tutorial-5.rs @@ -196,7 +196,6 @@ mod tutorial5 { controls.pack_start(&slider, true, true, 2); let video_window = DrawingArea::new(); - video_window.set_double_buffered(false); let video_overlay = playbin .clone()