Skip to content

Commit

Permalink
First proto for range table, enabled visible time range in selection …
Browse files Browse the repository at this point in the history
…panel
  • Loading branch information
abey79 committed Jul 12, 2024
1 parent f2c80bb commit 9444ba6
Show file tree
Hide file tree
Showing 5 changed files with 364 additions and 132 deletions.
1 change: 1 addition & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4830,6 +4830,7 @@ dependencies = [
"re_log_types",
"re_query",
"re_space_view",
"re_space_view_dataframe",
"re_space_view_spatial",
"re_space_view_time_series",
"re_tracing",
Expand Down
1 change: 1 addition & 0 deletions crates/viewer/re_selection_panel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ re_entity_db.workspace = true
re_log_types.workspace = true
re_log.workspace = true
re_query.workspace = true
re_space_view_dataframe.workspace = true
re_space_view_spatial.workspace = true
re_space_view_time_series.workspace = true
re_space_view.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/viewer/re_selection_panel/src/visible_time_range_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use egui::{NumExt as _, Response, Ui};

use re_entity_db::TimeHistogram;
use re_log_types::{EntityPath, ResolvedTimeRange, TimeType, TimeZone, TimelineName};
use re_space_view_dataframe::DataframeSpaceView;
use re_space_view_spatial::{SpatialSpaceView2D, SpatialSpaceView3D};
use re_space_view_time_series::TimeSeriesSpaceView;
use re_types::{
Expand All @@ -24,6 +25,7 @@ static VISIBLE_HISTORY_SUPPORTED_SPACE_VIEWS: once_cell::sync::Lazy<
SpatialSpaceView3D::identifier(),
SpatialSpaceView2D::identifier(),
TimeSeriesSpaceView::identifier(),
DataframeSpaceView::identifier(),
]
.map(Into::into)
.into()
Expand Down
Loading

0 comments on commit 9444ba6

Please sign in to comment.