Allow negative offsets on linetext

This commit is contained in:
Flamanis
2023-01-04 15:17:25 -06:00
parent 1e83cac1f2
commit 68cb06b402
+3 -3
View File
@@ -1641,7 +1641,7 @@ do
editInstanceSetting(currentInstance, "InstanceRefreshRows")
afterUpdate()
end,
min = 0,
min = -10,
max = 125,
step = 1,
name = string.format(Loc["STRING_OPTIONS_ALIGNED_TEXT_COLUMNS_OFFSET"], 1),
@@ -1656,7 +1656,7 @@ do
editInstanceSetting(currentInstance, "InstanceRefreshRows")
afterUpdate()
end,
min = 0,
min = -10,
max = 75,
step = 1,
name = string.format(Loc["STRING_OPTIONS_ALIGNED_TEXT_COLUMNS_OFFSET"], 2),
@@ -1671,7 +1671,7 @@ do
editInstanceSetting(currentInstance, "InstanceRefreshRows")
afterUpdate()
end,
min = 0,
min = -10,
max = 50,
step = 1,
name = string.format(Loc["STRING_OPTIONS_ALIGNED_TEXT_COLUMNS_OFFSET"], 3),