Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
Merge branch 'google:main' into build-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Thelta authored Oct 5, 2023
2 parents 4e8a45d + 088d4b8 commit 554d20c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- 'cmake/**'
- 'src/**'
- 'third_party/**'
- 'conanfile.py'
pull_request:
branches:
- 'main'
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def config_options(self):

def build_requirements(self):
if self.options.with_system_deps: return
self.build_requires('protobuf/3.21.4')
self.build_requires('grpc/1.48.0')
self.build_requires('protobuf/3.21.4')
self.build_requires('gtest/1.11.0', force_host_context=True)

def requirements(self):
Expand Down
2 changes: 1 addition & 1 deletion src/ClientFlags/ClientFlags.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ABSL_FLAG(

ABSL_FLAG(bool, auto_frame_track, true, "Automatically add the default Frame Track.");

ABSL_FLAG(bool, time_range_selection, true, "Enable time range selection feature.");
ABSL_FLAG(bool, time_range_selection, false, "Enable time range selection feature.");

ABSL_FLAG(bool, symbol_store_support, false, "Enable experimental symbol store support.");

Expand Down
3 changes: 2 additions & 1 deletion src/OrbitGl/TrackContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,8 @@ void TrackContainer::DrawIncompleteDataIntervals(PrimitiveAssembler& primitive_a
const float world_height = viewport_->GetWorldHeight();

// Actually draw the ranges.
for (const auto& [start_x, end_x] : x_ranges) {
for (auto [start_x, end_x] : x_ranges) {
start_x = std::max(layout_->GetTrackHeaderWidth(), start_x);
const Vec2 pos{start_x, world_start_y};
const Vec2 size{end_x - start_x, world_height};
float z_value = GlCanvas::kZValueIncompleteDataOverlay;
Expand Down

0 comments on commit 554d20c

Please sign in to comment.