From 237f44deda72d5dec1458a9831c702f464d7e323 Mon Sep 17 00:00:00 2001 From: yparitcher Date: Mon, 13 Feb 2023 20:16:23 -0500 Subject: [PATCH] Dispatcher: add word spacing & expansion --- frontend/dispatcher.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/dispatcher.lua b/frontend/dispatcher.lua index 2d583fc99..545a40e1c 100644 --- a/frontend/dispatcher.lua +++ b/frontend/dispatcher.lua @@ -172,6 +172,8 @@ local settingsList = { line_spacing = {category="absolutenumber", rolling=true, separator=true}, font_size = {category="absolutenumber", title=_("Set font size"), rolling=true, step=0.5}, font_base_weight = {category="string", rolling=true}, + word_spacing = {category="string", rolling=true}, + word_expansion = {category="string", rolling=true}, font_gamma = {category="string", rolling=true}, font_hinting = {category="string", rolling=true}, font_kerning = {category="string", rolling=true, separator=true}, @@ -323,6 +325,8 @@ local dispatcher_menu_order = { "increase_font", "decrease_font", "font_size", + "word_spacing", + "word_expansion", "font_gamma", "font_base_weight", "font_hinting",