Skip to content

Commit

Permalink
#168 different labels for global font size and element-level font size
Browse files Browse the repository at this point in the history
  • Loading branch information
klues committed Jan 22, 2025
1 parent 4bbde2c commit 855229b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/lang/i18n.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,8 @@
"top": "Top",
"bottom": "Bottom",
"fontFamily": "Font family",
"fontSize": "Font size (text + image)",
"fontSize": "Font size",
"fontSizeTextAndImage": "Font size (text + image)",
"modeForHandlingTooLongTexts": "Mode for handling too long texts",
"adaptAutomatically": "Adapt automatically",
"truncate": "Truncate",
Expand Down
2 changes: 1 addition & 1 deletion src/vue-components/views/settings/settingsAppearance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</select>
</div>
<div class="srow mb-0">
<slider-input label="fontSize" unit="%" id="fontSize" min="0" max="100" step="1" v-model.number="metadata.textConfig.fontSizePct" @change="saveMetadata(metadata)"/>
<slider-input label="fontSizeTextAndImage" unit="%" id="fontSizeTextAndImage" min="0" max="100" step="1" v-model.number="metadata.textConfig.fontSizePct" @change="saveMetadata(metadata)"/>
</div>
<div class="srow">
<slider-input label="onlyTextFontSize" unit="%" id="onlyTextFontSize" min="0" max="100" step="1" v-model.number="metadata.textConfig.onlyTextFontSizePct" @change="saveMetadata(metadata)"/>
Expand Down

0 comments on commit 855229b

Please sign in to comment.