From 68cb06b402710601c0aecf3adb4cf7a1a36ae5d3 Mon Sep 17 00:00:00 2001 From: Flamanis Date: Wed, 4 Jan 2023 15:17:25 -0600 Subject: [PATCH] Allow negative offsets on linetext --- frames/window_options2_sections.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frames/window_options2_sections.lua b/frames/window_options2_sections.lua index 6cae91b7..8d8a9912 100644 --- a/frames/window_options2_sections.lua +++ b/frames/window_options2_sections.lua @@ -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),