diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-05-31 17:44:29 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-06-01 09:30:27 +0300 |
commit | 3f150fbcf19cdfa205da1576386edc6ef2db1bda (patch) | |
tree | c8638f28315d5a8648c14f69462d81f363b3393a /indra/newview/skins/default | |
parent | 9f00bb19b189753d9f801e080a87c821dcdcc8af (diff) |
viewer#1594 Add a "Cancel" button to exit the "New List" prompt
And fix infinite loop in replaceList. mLists[search_index] was extending
size of the list indefinetely.
Diffstat (limited to 'indra/newview/skins/default')
-rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index 6ad83508b8..ed040bf50d 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -3100,9 +3100,13 @@ Would you be my friend? <input name="listname" type="text"/> <button default="true" - index="0" + index="1" name="SetName" text="OK"/> + <button + index="0" + name="Cancel" + text="Cancel"/> </form> </notification> |