diff options
author | venomade <venomade@venomade.com> | 2024-05-08 19:50:28 +0100 |
---|---|---|
committer | venomade <venomade@venomade.com> | 2024-05-08 19:50:28 +0100 |
commit | d1cb531ae9ad4427861bc60ad5430d75a69ff197 (patch) | |
tree | e946497573a592e5e429bd4ff503515eb9bc6a37 /src/main.rs | |
parent | 68c483e8c599af1b29c5decf74d6ed43bcd89ef1 (diff) |
Remove LibAdwaita dependency
Remove LibAdwaita dependency to allow theming across platforms Remove Preferences and Toast as they are libadwaita components Remove now unneeded comments
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 18613be..6cd96f3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ mod notd; mod ui; -use adw::Application; +use gtk::Application; use gtk::glib; use gtk::prelude::*; use ui::{build_ui, load_css}; |