Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/3877/rename a button #3908

Merged
merged 5 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion visualization/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/)
### Changed

- Increased the size of the color quantile diagram [#3827](https://github.com/MaibornWolff/codecharta/pull/3827)
- Rename the "Reset camera..."-settings-button to make it more clear what it does [#3906](https://github.com/MaibornWolff/codecharta/pull/3906)
- Rename the "Reset camera..."-settings-button and add tooltip to make it more clear what it does [#3906](https://github.com/MaibornWolff/codecharta/pull/3906) [#3908](https://github.com/MaibornWolff/codecharta/pull/3908)

### Fixed 🐞

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ <h2>Global Configuration</h2>
<mat-slide-toggle [checked]="hideFlatBuildings$ | async" (change)="handleHideFlatBuildingsChanged($event)">
Hide Flattened Buildings
</mat-slide-toggle>
<mat-slide-toggle [checked]="resetCameraIfNewFileIsLoaded$ | async" (change)="handleResetCameraIfNewFileIsLoadedChanged($event)">
Reset camera when map layout changes
<mat-slide-toggle [checked]="resetCameraIfNewFileIsLoaded$ | async" (change)="handleResetCameraIfNewFileIsLoadedChanged($event)"
title="The camera is reset to the default position when any change in the map layout is made. Layout changes could be area changes, file changes, layout algorithm changes, focussing, excluding etc.">
Reset camera when map layout changes <i class="fa fa-info-circle"></i>
</mat-slide-toggle>
<mat-slide-toggle [checked]="isWhiteBackground$ | async" (change)="handleIsWhiteBackgroundChanged($event)">
White Background
Expand Down