Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jan 18, 2024
1 parent 66c9592 commit dd80167
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions crates/re_entity_db/src/entity_properties.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use std::fmt::Formatter;

use re_query_cache::external::re_query::ExtraQueryHistory;

#[cfg(feature = "serde")]
use re_log_types::EntityPath;

Expand Down Expand Up @@ -97,7 +95,7 @@ impl FromIterator<(EntityPath, EntityProperties)> for EntityPropertyMap {
#[cfg_attr(feature = "serde", serde(default))]
pub struct EntityProperties {
pub visible: bool,
pub visible_history: ExtraQueryHistory,
pub visible_history: re_query::ExtraQueryHistory,
pub interactive: bool,

/// What kind of color mapping should be applied (none, map, texture, transfer..)?
Expand Down Expand Up @@ -144,7 +142,7 @@ impl Default for EntityProperties {
fn default() -> Self {
Self {
visible: true,
visible_history: ExtraQueryHistory::default(),
visible_history: re_query::ExtraQueryHistory::default(),
interactive: true,
color_mapper: EditableAutoValue::default(),
pinhole_image_plane_distance: EditableAutoValue::default(),
Expand Down

0 comments on commit dd80167

Please sign in to comment.