Thread Tools Display Modes
09-16-10, 02:55 AM   #1
Smacker
A Deviate Faerie Dragon
 
Smacker's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2009
Posts: 16
StaticPopupDialogs WideEditBox Removed

The StaticPopupDialogs WideEditBox seems to have been removed,

I think you can use the

editBoxWidth = 350

instead, still investigating
 
09-16-10, 12:25 PM   #2
Smacker
A Deviate Faerie Dragon
 
Smacker's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2009
Posts: 16
need to change this:

Code:
	StaticPopupDialogs["POWERAURAS_EXPORT_AURA_SET"] = {
		text = "Title",
		button1 = DONE,
		hasEditBox = 1,
		maxLetters = 120,
		hasWideEditBox = 1,
		OnShow = function(self)
			self.wideEditBox:SetText(PowaAuras:CreateAuraSetString());
			self.wideEditBox:SetFocus();
			self.wideEditBox:HighlightText();
		end,
to this:

Code:
	StaticPopupDialogs["POWERAURAS_EXPORT_AURA_SET"] = {
		text = "Title",
		button1 = DONE,
		hasEditBox = 1,
		maxLetters = 120,
		editBoxWidth = 350,
		OnShow = function(self)
			self.editBox:SetText(PowaAuras:CreateAuraSetString());
			self.editBox:SetFocus();
			self.editBox:HighlightText();
		end,
 
 

WoWInterface » AddOns, Compilations, Macros » Cataclysm Beta » StaticPopupDialogs WideEditBox Removed

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off