h-gtk: Move appnotif.rs into the widgets module.
This commit is contained in:
parent
8c0055723c
commit
14d72b92cb
@ -12,11 +12,11 @@ use gtk::SettingsExt as GtkSettingsExt;
|
||||
use crossbeam_channel::{unbounded, Sender};
|
||||
use hammond_data::Podcast;
|
||||
|
||||
use appnotif::{InAppNotification, UndoState};
|
||||
use headerbar::Header;
|
||||
use settings::{self, WindowGeometry};
|
||||
use stacks::{Content, PopulatedState};
|
||||
use utils;
|
||||
use widgets::appnotif::{InAppNotification, UndoState};
|
||||
use widgets::{about_dialog, mark_all_notif, remove_show_notif};
|
||||
|
||||
use std::rc::Rc;
|
||||
|
||||
@ -70,7 +70,6 @@ mod widgets;
|
||||
mod app;
|
||||
mod headerbar;
|
||||
|
||||
mod appnotif;
|
||||
mod manager;
|
||||
mod settings;
|
||||
mod static_resource;
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
mod aboutdialog;
|
||||
pub mod appnotif;
|
||||
mod empty;
|
||||
mod episode;
|
||||
mod episode_states;
|
||||
|
||||
@ -14,8 +14,8 @@ use hammond_data::utils::delete_show;
|
||||
use hammond_data::Podcast;
|
||||
|
||||
use app::Action;
|
||||
use appnotif::{InAppNotification, UndoState};
|
||||
use utils::{self, lazy_load};
|
||||
use widgets::appnotif::{InAppNotification, UndoState};
|
||||
use widgets::EpisodeWidget;
|
||||
|
||||
use std::rc::Rc;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user