mirror of
https://github.com/Dummi26/musicdb.git
synced 2025-04-28 10:06:05 +02:00
made some things public
This commit is contained in:
parent
8d8d3151da
commit
00b032aceb
@ -837,7 +837,7 @@ impl LibraryBrowser {
|
||||
}
|
||||
}
|
||||
|
||||
enum ListElement {
|
||||
pub enum ListElement {
|
||||
Artist(ListArtist),
|
||||
Album(ListAlbum),
|
||||
Song(ListSong),
|
||||
@ -859,7 +859,7 @@ impl GuiElemWrapper for ListElement {
|
||||
}
|
||||
}
|
||||
|
||||
struct ListArtist {
|
||||
pub struct ListArtist {
|
||||
config: GuiElemCfg,
|
||||
id: ArtistId,
|
||||
children: Vec<Box<dyn GuiElem>>,
|
||||
@ -982,7 +982,7 @@ impl GuiElem for ListArtist {
|
||||
}
|
||||
}
|
||||
|
||||
struct ListAlbum {
|
||||
pub struct ListAlbum {
|
||||
config: GuiElemCfg,
|
||||
id: AlbumId,
|
||||
children: Vec<Box<dyn GuiElem>>,
|
||||
@ -1126,7 +1126,7 @@ impl GuiElem for ListAlbum {
|
||||
}
|
||||
}
|
||||
|
||||
struct ListSong {
|
||||
pub struct ListSong {
|
||||
config: GuiElemCfg,
|
||||
id: SongId,
|
||||
children: Vec<Box<dyn GuiElem>>,
|
||||
@ -1292,7 +1292,7 @@ impl GuiElem for ListSong {
|
||||
}
|
||||
}
|
||||
|
||||
struct FilterPanel {
|
||||
pub struct FilterPanel {
|
||||
config: GuiElemCfg,
|
||||
c_tab_main: ScrollBox<(
|
||||
Button<[Label; 1]>,
|
||||
|
Loading…
Reference in New Issue
Block a user