1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
local headerData =
{
titleTextAlignment = TEXT_ALIGN_CENTER ,
}
ZO_KeybindButtonTemplate_Setup ( interactKeybindControl , "DIALOG_PRIMARY" , ZO_ControllerDisconnect_DismissPopup , GetString ( SI_GAMEPAD_DISCONNECTED_CONTINUE_TEXT ) )
local narrationInfo =
{
end ,
end ,
end ,
--Because this message box can pop up basically anywhere, we want to ignore the narration for the keybind strip itself
local narrationData = { }
return narrationData
end ,
--Because this message box can pop up basically anywhere, we want to ignore all tooltip narration
--Treat this as an alert so it takes priority over everything else
narrationType = NARRATION_TYPE_ALERT ,
}
end
--There is no currently active profile, do not show the controller disconnected message.
return ""
else
local message
else
end
return message
end
end
if message == "" then
--There is no message to show.
return
end
local NARRATE_HEADER = true
end
end |