We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef8ca83 commit b340ce2Copy full SHA for b340ce2
main.lua
@@ -205,6 +205,9 @@ function DialogKey:OnGossipFrameUpdate(GossipFrame)
205
if tag then
206
if self.db.numKeysForGossip then
207
local oldText = data.info[tag]
208
+ if (FlagsUtil.IsSet(data.info.flags, Enum.GossipOptionRecFlags.QuestLabelPrepend)) then
209
+ oldText = GOSSIP_QUEST_OPTION_PREPEND:format(oldText);
210
+ end
211
local newText = (n % 10) .. ". " .. (oldText:match("^%d. (.+)$") or oldText)
212
if self.db.riskyNumKeysForGossip then
213
data.info[tag] = newText -- this may not be safe, but it looks like the only somewhat reliable way to ensure the scrollbar is enabled when needed
0 commit comments