Options fix and Cyclical pet ownership fix

This commit is contained in:
Flamanis
2023-07-26 10:39:43 -05:00
parent 90ab6ac83c
commit b6200c6086
3 changed files with 6 additions and 3 deletions
+2 -2
View File
@@ -2453,7 +2453,7 @@ do
{--title bar icons position X
type = "range",
get = function() return currentInstance.menu_anchor[1] end,
get = function() return currentInstance.toolbar_side == 1 and currentInstance.menu_anchor[1] or currentInstance.menu_anchor_down[1] end,
set = function(self, fixedparam, value)
editInstanceSetting(currentInstance, "MenuAnchor", value)
afterUpdate()
@@ -2467,7 +2467,7 @@ do
{--title bar icons position Y
type = "range",
get = function() return currentInstance.menu_anchor[2] end,
get = function() return currentInstance.toolbar_side == 1 and currentInstance.menu_anchor[2] or currentInstance.menu_anchor_down[2] end,
set = function(self, fixedparam, value)
editInstanceSetting(currentInstance, "MenuAnchor", nil, value)
afterUpdate()