summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelsnapshotpostcard.cpp
diff options
context:
space:
mode:
authorNiranV <NiranV.Dean@googlemail.com>2014-07-31 07:25:28 +0200
committerNiranV <NiranV.Dean@googlemail.com>2014-07-31 07:25:28 +0200
commitd9bb05037d517b3f26d03629200410b534d88d42 (patch)
treea9de93410459cee3539853f73b1b8590b5910ea7 /indra/newview/llpanelsnapshotpostcard.cpp
parent09aa769613cea11b739e1c2c1b51457e853f4258 (diff)
STORM-2050: Fixed: Postcard tab buttons can get 'out of sync'.
Diffstat (limited to 'indra/newview/llpanelsnapshotpostcard.cpp')
-rwxr-xr-xindra/newview/llpanelsnapshotpostcard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelsnapshotpostcard.cpp b/indra/newview/llpanelsnapshotpostcard.cpp
index 95c443b826..703ac25f97 100755
--- a/indra/newview/llpanelsnapshotpostcard.cpp
+++ b/indra/newview/llpanelsnapshotpostcard.cpp
@@ -232,9 +232,9 @@ void LLPanelSnapshotPostcard::onTabButtonPress(S32 btn_idx)
getChild<LLSideTrayPanelContainer>("postcard_panel_container");
container->selectTab(clicked_btn->getToggleState() ? btn_idx : !btn_idx);
- //clicked_btn->setEnabled(FALSE);
+ clicked_btn->setEnabled(FALSE);
other_btn->toggleState();
- //other_btn->setEnabled(TRUE);
+ other_btn->setEnabled(TRUE);
LL_DEBUGS() << "Button #" << btn_idx << " (" << clicked_btn->getName() << ") clicked" << LL_ENDL;
}