Merge pull request #421 from Flamanis/NegativeOffsetLineTexts

Allow negative offsets on linetext
This commit is contained in:
Tercio Jose
2023-01-06 20:02:34 -03:00
committed by GitHub
+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),