Skip to content

Commit

Permalink
Merge pull request #1338 from internetarchive/webdev-5079/fix/make-vi…
Browse files Browse the repository at this point in the history
…sual-adjustment-text-consistent

Rephrase visual adjustment text to improve consistency
  • Loading branch information
rebecca-shoptaw authored Aug 30, 2024
2 parents 4e04eac + d16f2dd commit 4cd0c7a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ const visualAdjustmentOptions = [{
value: 100,
}, {
id: 'invert',
name: 'Inverted colors (dark mode)',
name: 'Invert colors (dark mode)',
active: false,
}, {
id: 'grayscale',
name: 'Grayscale',
name: 'Convert to grayscale',
active: false,
}];

Expand Down
2 changes: 1 addition & 1 deletion src/BookNavigator/visual-adjustments/visual-adjustments.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class IABookVisualAdjustments extends LitElement {

get zoomControls() {
return html`
<h4>Zoom</h4>
<h4>Adjust zoom</h4>
<button class="zoom_out" @click=${this.emitZoomOut} title="zoom out">
<ia-icon-magnify-minus></ia-icon-magnify-minus>
</button>
Expand Down
2 changes: 1 addition & 1 deletion tests/jest/BookNavigator/visual-adjustments.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const options = [{
value: 100,
}, {
id: 'invert',
name: 'Invert colors',
name: 'Invert colors (dark mode)',
active: false,
}, {
id: 'brightness',
Expand Down

0 comments on commit 4cd0c7a

Please sign in to comment.