WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   Cataclysm Beta (https://www.wowinterface.com/forums/forumdisplay.php?f=82)
-   -   StaticPopupDialogs WideEditBox Removed (https://www.wowinterface.com/forums/showthread.php?t=34994)

Smacker 09-16-10 02:55 AM

StaticPopupDialogs WideEditBox Removed
 
The StaticPopupDialogs WideEditBox seems to have been removed,

I think you can use the

editBoxWidth = 350

instead, still investigating

Smacker 09-16-10 12:25 PM

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,



All times are GMT -6. The time now is 01:16 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI