Remove usage of use gpui::*
(#22310)
This PR removes usages of `use gpui::*;` in the codebase (excluding examples). We should only use glob imports for `gpui::prelude`, and then import everything else individually. Release Notes: - N/A
This commit is contained in:
parent
fadf9ff4f4
commit
7c6feeb3a8
3 changed files with 18 additions and 14 deletions
|
@ -5,11 +5,11 @@
|
|||
//! It can't be located in the `ui` crate because it depends on `editor`.
|
||||
//!
|
||||
|
||||
use editor::*;
|
||||
use gpui::*;
|
||||
use editor::{Editor, EditorElement, EditorStyle};
|
||||
use gpui::{AppContext, FocusHandle, FocusableView, FontStyle, Hsla, TextStyle, View};
|
||||
use settings::Settings;
|
||||
use theme::ThemeSettings;
|
||||
use ui::*;
|
||||
use ui::prelude::*;
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq)]
|
||||
pub enum FieldLabelLayout {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue