Skip to content
Snippets Groups Projects
Commit b6fbc02f authored by Merov Linden's avatar Merov Linden
Browse files

Pull merge from lindenlab/viewer-acme

parents 2ba7552b a6123336
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,7 @@ void LLFlickrPhotoPanel::draw() ...@@ -195,7 +195,7 @@ void LLFlickrPhotoPanel::draw()
mWorkingLabel->setVisible(!(previewp && previewp->getSnapshotUpToDate())); mWorkingLabel->setVisible(!(previewp && previewp->getSnapshotUpToDate()));
// Enable Post if we have a preview to send and no on going connection being processed // Enable Post if we have a preview to send and no on going connection being processed
mPostButton->setEnabled(no_ongoing_connection && (previewp && previewp->getSnapshotUpToDate()) && (mRatingComboBox && mRatingComboBox->getValue().isDefined())); mPostButton->setEnabled(no_ongoing_connection && (previewp && previewp->getSnapshotUpToDate()));
// Draw the rest of the panel on top of it // Draw the rest of the panel on top of it
LLPanel::draw(); LLPanel::draw();
...@@ -231,7 +231,7 @@ void LLFlickrPhotoPanel::onVisibilityChange(const LLSD& new_visibility) ...@@ -231,7 +231,7 @@ void LLFlickrPhotoPanel::onVisibilityChange(const LLSD& new_visibility)
previewp->setContainer(this); previewp->setContainer(this);
previewp->setSnapshotType(previewp->SNAPSHOT_WEB); previewp->setSnapshotType(previewp->SNAPSHOT_WEB);
previewp->setSnapshotFormat(LLFloaterSnapshot::SNAPSHOT_FORMAT_JPEG); previewp->setSnapshotFormat(LLFloaterSnapshot::SNAPSHOT_FORMAT_PNG);
previewp->setThumbnailSubsampled(TRUE); // We want the preview to reflect the *saved* image previewp->setThumbnailSubsampled(TRUE); // We want the preview to reflect the *saved* image
previewp->setAllowRenderUI(FALSE); // We do not want the rendered UI in our snapshots previewp->setAllowRenderUI(FALSE); // We do not want the rendered UI in our snapshots
previewp->setAllowFullScreenPreview(FALSE); // No full screen preview in SL Share mode previewp->setAllowFullScreenPreview(FALSE); // No full screen preview in SL Share mode
...@@ -328,7 +328,6 @@ void LLFlickrPhotoPanel::clearAndClose() ...@@ -328,7 +328,6 @@ void LLFlickrPhotoPanel::clearAndClose()
{ {
mTitleTextBox->setValue(""); mTitleTextBox->setValue("");
mDescriptionTextBox->setValue(""); mDescriptionTextBox->setValue("");
mTagsTextBox->setValue(DEFAULT_TAG_TEXT);
LLFloater* floater = getParentByType<LLFloater>(); LLFloater* floater = getParentByType<LLFloater>();
if (floater) if (floater)
......
...@@ -183,21 +183,20 @@ Use "" for multi-word tags ...@@ -183,21 +183,20 @@ Use "" for multi-word tags
follows="left|top" follows="left|top"
top_pad="16" top_pad="16"
left="9" left="9"
label="Choose Flickr rating (required)..."
name="rating_combobox" name="rating_combobox"
tool_tip="Flickr content rating" tool_tip="Flickr content rating"
height="21" height="21"
width="250"> width="250">
<combo_box.item <combo_box.item
label="Safe content rating" label="Safe Flickr rating"
name="SafeRating" name="SafeRating"
value="1" /> value="1" />
<combo_box.item <combo_box.item
label="Moderate content rating" label="Moderate Flickr rating"
name="ModerateRating" name="ModerateRating"
value="2" /> value="2" />
<combo_box.item <combo_box.item
label="Restricted content rating" label="Restricted Flickr rating"
name="RestrictedRating" name="RestrictedRating"
value="3" /> value="3" />
</combo_box> </combo_box>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment