Add FCOItemSaver settings

Baertram [06-24-18 - 17:28]
Add FCOItemSaver settings
Filename
IIfA/IIfAMenu.lua
diff --git a/IIfA/IIfAMenu.lua b/IIfA/IIfAMenu.lua
index 34f61e3..6f8a99c 100644
--- a/IIfA/IIfAMenu.lua
+++ b/IIfA/IIfAMenu.lua
@@ -587,6 +587,28 @@ function IIfA:CreateOptionsMenu()
 			getFunc = function() return IIfA:GetSceneVisible("trade") end,
 			setFunc = function(value) IIfA:SetSceneVisible("trade", value) end,
 		},
+
+		--Other addons
+		{
+		    type = "header",
+		    name = "Other addons",
+		},
+
+		--FCOItemSaver
+		{
+			type = "submenu",
+			name = "FCOItemSaver",
+			tooltip = "Manage settings for the addon FCOItemSaver within IIfA",
+			controls = {
+				{
+				    type = "checkbox",
+				    name = "Show marker icons",
+				    tooltip = "Shows FCOIS marker icons within the inventory frame rows",
+				    getFunc = function() return IIfA:GetSettings().FCOISshowMarkerIcons end,
+				    setFunc = function(value) IIfA:GetSettings().FCOISshowMarkerIcons = value end,
+				},
+			},
+		},

 	-- options data end
 	}