diff options
author | McCabe Maxsted | 2011-09-08 20:25:58 -0700 |
---|---|---|
committer | McCabe Maxsted | 2011-09-08 20:25:58 -0700 |
commit | 84c9ac0328144bb923fc0b6b556681598406b76c (patch) | |
tree | 3f1aba014880f0f772c6870e7c3aad38ceeda64a /linden | |
parent | Create readable version string for installers, based on jacek's viewer_info.p... (diff) | |
download | meta-impy-84c9ac0328144bb923fc0b6b556681598406b76c.zip meta-impy-84c9ac0328144bb923fc0b6b556681598406b76c.tar.gz meta-impy-84c9ac0328144bb923fc0b6b556681598406b76c.tar.bz2 meta-impy-84c9ac0328144bb923fc0b6b556681598406b76c.tar.xz |
Fixed snapshot Capture combo
Diffstat (limited to 'linden')
-rw-r--r-- | linden/indra/newview/llfloatersnapshot.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llfloatersnapshot.cpp b/linden/indra/newview/llfloatersnapshot.cpp index e007680..55e108b 100644 --- a/linden/indra/newview/llfloatersnapshot.cpp +++ b/linden/indra/newview/llfloatersnapshot.cpp | |||
@@ -1114,10 +1114,10 @@ LLSnapshotLivePreview::ESnapshotType LLFloaterSnapshot::Impl::getTypeIndex(LLFlo | |||
1114 | LLFloaterSnapshot::ESnapshotFormat LLFloaterSnapshot::Impl::getFormatIndex(LLFloaterSnapshot* floater) | 1114 | LLFloaterSnapshot::ESnapshotFormat LLFloaterSnapshot::Impl::getFormatIndex(LLFloaterSnapshot* floater) |
1115 | { | 1115 | { |
1116 | ESnapshotFormat index = SNAPSHOT_FORMAT_PNG; | 1116 | ESnapshotFormat index = SNAPSHOT_FORMAT_PNG; |
1117 | if(floater->hasChild("local_format_combo")) | 1117 | if (floater->hasChild("local_format_combo")) |
1118 | { | 1118 | { |
1119 | LLComboBox* local_format_combo = floater->getChild<LLComboBox>("local_format_combo"); | 1119 | LLComboBox* local_format_combo = floater->getChild<LLComboBox>("local_format_combo"); |
1120 | const std::string id = local_format_combo->getSelectedItemLabel(); | 1120 | const std::string id = local_format_combo->getValue().asString(); |
1121 | if (id == "PNG") | 1121 | if (id == "PNG") |
1122 | index = SNAPSHOT_FORMAT_PNG; | 1122 | index = SNAPSHOT_FORMAT_PNG; |
1123 | else if (id == "JPEG") | 1123 | else if (id == "JPEG") |
@@ -1136,10 +1136,10 @@ LLFloaterSnapshot::ESnapshotFormat LLFloaterSnapshot::Impl::getFormatIndex(LLFlo | |||
1136 | LLViewerWindow::ESnapshotType LLFloaterSnapshot::Impl::getLayerType(LLFloaterSnapshot* floater) | 1136 | LLViewerWindow::ESnapshotType LLFloaterSnapshot::Impl::getLayerType(LLFloaterSnapshot* floater) |
1137 | { | 1137 | { |
1138 | LLViewerWindow::ESnapshotType type = LLViewerWindow::SNAPSHOT_TYPE_COLOR; | 1138 | LLViewerWindow::ESnapshotType type = LLViewerWindow::SNAPSHOT_TYPE_COLOR; |
1139 | if(floater->hasChild("layer_types")) | 1139 | if (floater->hasChild("layer_types")) |
1140 | { | 1140 | { |
1141 | LLComboBox* layer_types = floater->getChild<LLComboBox>("layer_types"); | 1141 | LLComboBox* layer_types = floater->getChild<LLComboBox>("layer_types"); |
1142 | const std::string id = layer_types->getSelectedItemLabel(); | 1142 | const std::string id = layer_types->getValue().asString(); |
1143 | if (id == "colors") | 1143 | if (id == "colors") |
1144 | type = LLViewerWindow::SNAPSHOT_TYPE_COLOR; | 1144 | type = LLViewerWindow::SNAPSHOT_TYPE_COLOR; |
1145 | else if (id == "depth") | 1145 | else if (id == "depth") |