From 8b61b36398e08a2442f1634c0089826f7e9a9f8e Mon Sep 17 00:00:00 2001 From: Parnic Date: Tue, 21 Apr 2009 04:45:20 +0000 Subject: [PATCH] - added more reminders that you have to press Enter after typing strings into various configuration panels before they will save --- IceBarElement.lua | 4 ++-- modules/TargetInfo.lua | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/IceBarElement.lua b/IceBarElement.lua index 1c85e3b..f31ffc3 100644 --- a/IceBarElement.lua +++ b/IceBarElement.lua @@ -382,7 +382,7 @@ function IceBarElement.prototype:GetOptions() upperTextString = { type = 'text', name = 'Upper Text', - desc = 'The upper text to display under this bar (accepts LibDogTag formatting)\n\nSee http://www.wowace.com/wiki/LibDogTag-2.0/ or type /dogtag for tag info', + desc = 'The upper text to display under this bar (accepts LibDogTag formatting)\n\nSee http://www.wowace.com/wiki/LibDogTag-2.0/ or type /dogtag for tag info.\n\nRemember to press ENTER after filling out this box or it will not save.', hidden = function() return DogTag == nil or not self.moduleSettings.usesDogTagStrings end, @@ -404,7 +404,7 @@ function IceBarElement.prototype:GetOptions() lowerTextString = { type = 'text', name = 'Lower Text', - desc = 'The lower text to display under this bar (accepts LibDogTag formatting)\n\nSee http://www.wowace.com/wiki/LibDogTag-2.0/ or type /dogtag for tag info', + desc = 'The lower text to display under this bar (accepts LibDogTag formatting)\n\nSee http://www.wowace.com/wiki/LibDogTag-2.0/ or type /dogtag for tag info.\n\nRemember to press ENTER after filling out this box or it will not save.', hidden = function() return DogTag == nil or not self.moduleSettings.usesDogTagStrings end, diff --git a/modules/TargetInfo.lua b/modules/TargetInfo.lua index 36caf43..201a933 100644 --- a/modules/TargetInfo.lua +++ b/modules/TargetInfo.lua @@ -501,7 +501,7 @@ function IceTargetInfo.prototype:GetOptions() opts["line1Tag"] = { type = 'text', name = 'Line 1 tag', - desc = 'DogTag-formatted string to use for the top text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags', + desc = 'DogTag-formatted string to use for the top text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags.\n\nRemember to press ENTER after filling out this box or it will not save.', get = function() return self.moduleSettings.line1Tag end, @@ -521,7 +521,7 @@ function IceTargetInfo.prototype:GetOptions() opts["line2Tag"] = { type = 'text', name = 'Line 2 tag', - desc = 'DogTag-formatted string to use for the second text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags', + desc = 'DogTag-formatted string to use for the second text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags.\n\nRemember to press ENTER after filling out this box or it will not save.', get = function() return self.moduleSettings.line2Tag end, @@ -541,7 +541,7 @@ function IceTargetInfo.prototype:GetOptions() opts["line3Tag"] = { type = 'text', name = 'Line 3 tag', - desc = 'DogTag-formatted string to use for the third text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags', + desc = 'DogTag-formatted string to use for the third text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags.\n\nRemember to press ENTER after filling out this box or it will not save.', get = function() return self.moduleSettings.line3Tag end, @@ -561,7 +561,7 @@ function IceTargetInfo.prototype:GetOptions() opts["line4Tag"] = { type = 'text', name = 'Line 4 tag', - desc = 'DogTag-formatted string to use for the bottom text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags', + desc = 'DogTag-formatted string to use for the bottom text line (leave blank to revert to old behavior)\n\nType /dogtag for a list of available tags.\n\nRemember to press ENTER after filling out this box or it will not save.', get = function() return self.moduleSettings.line4Tag end,