diff --git a/hammond-gtk/resources/gtk/show_widget.ui b/hammond-gtk/resources/gtk/show_widget.ui index cfb2207..cac47f5 100644 --- a/hammond-gtk/resources/gtk/show_widget.ui +++ b/hammond-gtk/resources/gtk/show_widget.ui @@ -19,125 +19,9 @@ True False - vertical + center - True - False - center - - - True - False - 128 - image-x-generic-symbolic - - - False - True - 0 - - - - - True - False - center - center - vertical - - - True - False - The people behind The Intercept’s fearless reporting and incisive commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the crucial issues of our time: national security, civil liberties, foreign policy, and criminal justice. Plus interviews with artists, thinkers, and newsmakers who challenge our preconceptions about the world we live in. - True - - - False - True - 5 - 0 - - - - - True - False - - - True - True - True - - - True - False - emblem-system-symbolic - - - - - False - True - 5 - 0 - - - - - Website - True - True - True - - - False - True - 5 - 1 - - - - - Unsubscribe - True - True - True - - - False - True - 5 - end - 2 - - - - - False - True - 5 - 1 - - - - - True - True - 5 - 1 - - - - - False - True - 10 - 0 - - - - True False vertical @@ -148,9 +32,201 @@ True True + 0 + + + + + True + False + center + vertical + + + True + False + 0 + none + + + True + False + vertical + + + True + False + center + + + True + False + 128 + image-x-generic-symbolic + + + False + False + 5 + 0 + + + + + True + False + center + vertical + + + True + False + start + center + A podcast about learning the Rust + True + 80 + 80 + False + + + False + False + 5 + 0 + + + + + True + False + + + True + True + True + + + True + False + emblem-system-symbolic + + + + + False + True + 5 + 0 + + + + + Website + True + True + True + + + False + True + 5 + 1 + + + + + Unsubscribe + True + True + True + + + False + True + 5 + end + 2 + + + + + False + False + 5 + 1 + + + + + False + False + 5 + 1 + + + + + False + False + 10 + 0 + + + + + + + + + + False + False + 5 + 0 + + + + + True + False + 0 + none + + + + + + + + + True + True + 1 + + + + + False + True 1 + + + True + False + vertical + + + + + + False + True + 2 + + diff --git a/hammond-gtk/src/widgets/show.rs b/hammond-gtk/src/widgets/show.rs index 5aaff1a..a8b9f83 100644 --- a/hammond-gtk/src/widgets/show.rs +++ b/hammond-gtk/src/widgets/show.rs @@ -23,7 +23,7 @@ pub struct ShowWidget { link: gtk::Button, settings: gtk::Button, unsub: gtk::Button, - episodes: gtk::Box, + episodes: gtk::Frame, } impl ShowWidget { @@ -31,7 +31,7 @@ impl ShowWidget { // Adapted from gnome-music AlbumWidget let builder = gtk::Builder::new_from_resource("/org/gnome/hammond/gtk/show_widget.ui"); let container: gtk::Box = builder.get_object("container").unwrap(); - let episodes: gtk::Box = builder.get_object("episodes").unwrap(); + let episodes: gtk::Frame = builder.get_object("episodes").unwrap(); let cover: gtk::Image = builder.get_object("cover").unwrap(); let description: gtk::Label = builder.get_object("description").unwrap();