View Single Post
12-14-17, 12:58 PM   #5
Smallinger
A Deviate Faerie Dragon
 
Smallinger's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2016
Posts: 18
Ok, thx for the tipp with the Variables names,

i test it a little bit an got a fix with
Code:
repairMode = {
	order	= 17,
	type 	= "select",
	name    = "Repair mode",
	desc    = "",
	style	= "radio",
	values 	= repairModeList,
	get   	= function(info, value) return self.db.char.repairMode end,
	set   	= function(info, value) self.db.char.repairMode = value end,
},
  Reply With Quote