comparison gui.lua @ 53:7af58a7dce7d

Don't collapse wipes into kills across normal/heroic boundaries. Apply preferredIndex change to popup dialogs to avoid memory tainting.
author Farmbuyer of US-Kilrogg <farmbuyer@gmail.com>
date Fri, 06 Apr 2012 18:23:22 +0000
parents 94dacaeff463
children 6d5fcbdc0590
comparison
equal deleted inserted replaced
52:94dacaeff463 53:7af58a7dce7d
2267 whileDead = true, 2267 whileDead = true,
2268 hideOnEscape = true, 2268 hideOnEscape = true,
2269 enterClicksFirstButton = true, 2269 enterClicksFirstButton = true,
2270 hasEditBox = true, 2270 hasEditBox = true,
2271 editBoxWidth = 350, 2271 editBoxWidth = 350,
2272 preferredIndex = 3,
2272 OnShow = function (dialog, url) 2273 OnShow = function (dialog, url)
2273 dialog.editBox:SetText(url) 2274 dialog.editBox:SetText(url)
2274 dialog.editBox:SetFocus() 2275 dialog.editBox:SetFocus()
2275 dialog.editBox:HighlightText() 2276 dialog.editBox:HighlightText()
2276 end, 2277 end,