Add Content Struct.

This commit is contained in:
Jordan Petridis
2017-12-01 01:12:25 +02:00
parent 774e5b38a0
commit dd0034327b
6 changed files with 67 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ use gtk;
#[derive(Debug, Clone)]
pub struct EmptyView {
container: gtk::Box,
pub container: gtk::Box,
}
impl EmptyView {
+1
View File
@@ -1 +1,2 @@
pub mod podcasts;
pub mod empty;
+1 -1
View File
@@ -11,7 +11,7 @@ use utils::get_pixbuf_from_path;
#[derive(Debug, Clone)]
pub struct PopulatedView {
container: gtk::Box,
pub container: gtk::Box,
flowbox: gtk::FlowBox,
viewport: gtk::Viewport,
}