Commit bcf21b06 authored by Bilal Elmoussaoui's avatar Bilal Elmoussaoui

Merge branch 'wip/cdavis/remove-window-handle' into 'master'

welcome: Drop HdyWindowHandle See merge request GNOME/gnome-tour!40
parents c5f4d383 bc3370b8
......@@ -20,7 +20,7 @@ pub enum Action {
}
pub struct WelcomePageWidget {
pub widget: libhandy::WindowHandle,
pub widget: gtk::Box,
#[cfg(feature = "video")]
player: gst_player::Player,
#[cfg(feature = "video")]
......@@ -31,7 +31,7 @@ pub struct WelcomePageWidget {
impl WelcomePageWidget {
pub fn new() -> Self {
let widget = libhandy::WindowHandle::new();
let widget = gtk::Box::new(gtk::Orientation::Horizontal, 0);
#[cfg(feature = "video")]
let player = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment