Skip to content

Commit

Permalink
combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
casperstorm committed Jul 31, 2023
1 parent bc5edcc commit c6aa127
Show file tree
Hide file tree
Showing 3 changed files with 708 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screen/dashboard/command_bar.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use data::Config;
use iced::widget::{column, combo_box, container, text};
use iced::widget::{column, container, text};
use iced::Length;

use crate::theme;
use crate::widget::{double_pass, key_press, Element};
use crate::widget::{combo_box, double_pass, key_press, Element};

#[derive(Debug, Clone)]
pub struct CommandBar {
Expand Down
2 changes: 2 additions & 0 deletions src/widget.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![allow(dead_code)]
pub use self::anchored_overlay::anchored_overlay;
pub use self::collection::Collection;
pub use self::combo_box::combo_box;
pub use self::context_menu::context_menu;
pub use self::double_pass::double_pass;
pub use self::hover::hover;
Expand All @@ -12,6 +13,7 @@ use crate::Theme;

pub mod anchored_overlay;
pub mod collection;
pub mod combo_box;
pub mod context_menu;
mod double_pass;
pub mod hover;
Expand Down
Loading

0 comments on commit c6aa127

Please sign in to comment.