diff options
-rw-r--r-- | ChangeLog.txt | 3 | ||||
-rw-r--r-- | linden/indra/llui/llfloater.cpp | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index d6d0f90..5fdd770 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -21,6 +21,9 @@ | |||
21 | * linden/indra/newview/pipeline.cpp: | 21 | * linden/indra/newview/pipeline.cpp: |
22 | Backported possible crash fix while changing graphics settings from 1.22. | 22 | Backported possible crash fix while changing graphics settings from 1.22. |
23 | 23 | ||
24 | * linden/indra/llui/llfloater.cpp: | ||
25 | Backported possible crash fix in llfloater.cpp from 1.22. | ||
26 | |||
24 | 27 | ||
25 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | 28 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
26 | =- 1.1.0 RC2 -= | 29 | =- 1.1.0 RC2 -= |
diff --git a/linden/indra/llui/llfloater.cpp b/linden/indra/llui/llfloater.cpp index 9f8cd65..2f4e873 100644 --- a/linden/indra/llui/llfloater.cpp +++ b/linden/indra/llui/llfloater.cpp | |||
@@ -1580,6 +1580,7 @@ void LLFloater::updateButtons() | |||
1580 | S32 button_count = 0; | 1580 | S32 button_count = 0; |
1581 | for (S32 i = 0; i < BUTTON_COUNT; i++) | 1581 | for (S32 i = 0; i < BUTTON_COUNT; i++) |
1582 | { | 1582 | { |
1583 | if(!mButtons[i]) continue; | ||
1583 | mButtons[i]->setEnabled(mButtonsEnabled[i]); | 1584 | mButtons[i]->setEnabled(mButtonsEnabled[i]); |
1584 | 1585 | ||
1585 | if (mButtonsEnabled[i] | 1586 | if (mButtonsEnabled[i] |