From 0f28a1bd86a2ec0ca4807ea41576f3455d46fd37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Sat, 19 Oct 2019 07:09:52 -0400 Subject: [PATCH 01/43] These are things, I'm sleepy --- indra/llui/llmenugl.h | 1 + indra/newview/CMakeLists.txt | 6 +++--- indra/newview/llnameeditor.cpp | 3 +++ indra/newview/llparticipantlist.cpp | 19 ------------------- indra/newview/lltexturectrl.cpp | 6 ++---- indra/newview/res/viewerRes.rc.in | 6 ------ 6 files changed, 9 insertions(+), 32 deletions(-) diff --git a/indra/llui/llmenugl.h b/indra/llui/llmenugl.h index 153479852..844edef5b 100644 --- a/indra/llui/llmenugl.h +++ b/indra/llui/llmenugl.h @@ -897,6 +897,7 @@ public: LLView*const getVisibleMenu() const; virtual BOOL hasVisibleMenu() const {return getVisibleMenu() != NULL;} + static LLMenuItemGL* getActivatedItem() { return static_cast(sItemLastSelectedHandle.get()); } static void setActivatedItem(LLMenuItemGL* item); // Need to detect if mouse-up after context menu spawn has moved. diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 6a3f51baf..8969ba7b1 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1303,16 +1303,16 @@ if (WINDOWS) set_source_files_properties(${viewer_RESOURCE_FILES} PROPERTIES HEADER_FILE_ONLY TRUE) - set(viewer_RESOURCE_FILES + + list(APPEND viewer_RESOURCE_FILES ${CMAKE_CURRENT_BINARY_DIR}/viewerRes.rc - ${viewer_RESOURCE_FILES} ) set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/viewerRes.rc PROPERTIES COMPILE_FLAGS "-I${CMAKE_CURRENT_SOURCE_DIR}/res" ) - SOURCE_GROUP("Resource Files" FILES ${viewer_RESOURCE_FILES}) + source_group("Resource Files" FILES ${viewer_RESOURCE_FILES}) list(APPEND viewer_SOURCE_FILES ${viewer_RESOURCE_FILES}) diff --git a/indra/newview/llnameeditor.cpp b/indra/newview/llnameeditor.cpp index a88cd5f05..7bd55656f 100644 --- a/indra/newview/llnameeditor.cpp +++ b/indra/newview/llnameeditor.cpp @@ -108,6 +108,9 @@ LLXMLNodePtr LLNameEditor::getXML(bool save_children) const LLXMLNodePtr node = LLLineEditor::getXML(); node->setName(LL_NAME_EDITOR_TAG); + node->createChild("label", TRUE)->setStringValue(mInitialValue); + node->createChild("rlv_sensitive", TRUE)->setBoolValue(mRLVSensitive); + node->createChild("click_for_profile", TRUE)->setBoolValue(mClickForProfile); return node; } diff --git a/indra/newview/llparticipantlist.cpp b/indra/newview/llparticipantlist.cpp index 2f6ba27e4..d4693dee8 100644 --- a/indra/newview/llparticipantlist.cpp +++ b/indra/newview/llparticipantlist.cpp @@ -120,25 +120,6 @@ LLParticipantList::~LLParticipantList() mAvatarListRefreshConnection.disconnect(); mAvatarListReturnConnection.disconnect(); mAvatarListToggleIconsConnection.disconnect(); - - // It is possible Participant List will be re-created from LLCallFloater::onCurrentChannelChanged() - // See ticket EXT-3427 - // hide menu before deleting it to stop enable and check handlers from triggering. - if(mParticipantListMenu && !LLApp::isExiting()) - { - mParticipantListMenu->hide(); - } - - if (mParticipantListMenu) - { - delete mParticipantListMenu; - mParticipantListMenu = NULL; - } - - mAvatarList->setContextMenu(NULL); - mAvatarList->setComparator(NULL); - - delete mAvalineUpdater; */ } diff --git a/indra/newview/lltexturectrl.cpp b/indra/newview/lltexturectrl.cpp index 3d62acf8c..71afcf0fe 100644 --- a/indra/newview/lltexturectrl.cpp +++ b/indra/newview/lltexturectrl.cpp @@ -75,7 +75,6 @@ // // tag: vaa emerald local_asset_browser [begin] -//#include #include "floaterlocalassetbrowse.h" #include "llscrolllistctrl.h" #define LOCALLIST_COL_ID 1 @@ -298,10 +297,9 @@ void LLFloaterTexturePicker::setImageID(const LLUUID& image_id) } /* TODO: Figure out how to select local asset if in use? // tag: vaa emerald local_asset_browser [begin] - else if (boost::algorithm::any_of_equal(mLocalScrollCtrl->getAllIDs(), mImageAssetID)) + else if (mLocalScrollCtrl->selectByID(mImageAssetID)) { tab = "local_tab"; - mLocalScrollCtrl->selectByID(mImageAssetID); } // tag: vaa emerald local_asset_browser [end] */ @@ -966,7 +964,7 @@ void LLFloaterTexturePicker::onBtnBrowser(void *userdata) // reacts to user clicking a valid field in the local scroll list. void LLFloaterTexturePicker::onLocalScrollCommit() { - LLUUID id(mLocalScrollCtrl->getSelectedItemLabel(LOCALLIST_COL_ID)); + LLUUID id(mLocalScrollCtrl->getStringUUIDSelectedItem()); mOwner->setImageAssetID(id); if (childGetValue("apply_immediate_check").asBoolean()) diff --git a/indra/newview/res/viewerRes.rc.in b/indra/newview/res/viewerRes.rc.in index 97859af50..44c8104aa 100644 --- a/indra/newview/res/viewerRes.rc.in +++ b/indra/newview/res/viewerRes.rc.in @@ -2,12 +2,6 @@ // #include "resource.h" -#ifdef IDC_STATIC -#undef IDC_STATIC -#endif -#define IDC_STATIC (-1) -#include "winresrc.h" - #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // From daffb602bb44c97294417f5b3b5936e3c4ea7ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Sat, 19 Oct 2019 08:19:27 -0400 Subject: [PATCH 02/43] Clean up a bunch of spelling suggestion code that's annoyed me forever --- indra/llui/lllineeditor.cpp | 132 ++++++++++-------------------------- indra/llui/lllineeditor.h | 11 --- indra/llui/lltexteditor.cpp | 124 ++++++++------------------------- indra/llui/lltexteditor.h | 13 ---- 4 files changed, 62 insertions(+), 218 deletions(-) diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index 9916c9465..0683c2493 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -443,28 +443,9 @@ void LLLineEditor::deselect() } -void LLLineEditor::spell_correct(void* data) +void LLLineEditor::spell_show(void* show) { - SpellMenuBind* tempBind = (SpellMenuBind*)data; - LLLineEditor* line = tempBind->origin; - if(tempBind && line) - { - LL_INFOS() << ((LLMenuItemCallGL *)(tempBind->menuItem))->getName() << " : " << tempBind->origin->getName() << " : " << tempBind->word << LL_ENDL; - if(line)line->spellReplace(tempBind); - } -} - - -void LLLineEditor::spell_show(void * data) -{ - SpellMenuBind* tempBind = (SpellMenuBind*)data; - LLLineEditor* line = tempBind->origin; - - if (tempBind && line) - { - BOOL show = (tempBind->word == "Show Misspellings"); - glggHunSpell->setSpellCheckHighlight(show); - } + glggHunSpell->setSpellCheckHighlight(!!show); } std::vector LLLineEditor::getMisspelledWordsPositions() @@ -516,11 +497,12 @@ std::vector LLLineEditor::getMisspelledWordsPositions() void LLLineEditor::spell_add(void* data) { - SpellMenuBind* tempBind = (SpellMenuBind*)data; - if(tempBind) + auto self = static_cast(data); + S32 wordStart = 0, wordLen = 0; + if (self->getWordBoundriesAt(self->calculateCursorFromMouse(self->mLastContextMenuX), &wordStart, &wordLen)) { - glggHunSpell->addWordToCustomDictionary(tempBind->word); - tempBind->origin->mPrevSpelledText="";//make it update + glggHunSpell->addWordToCustomDictionary(wstring_to_utf8str(self->getWText().substr(wordStart, wordLen))); + self->mPrevSpelledText.clear(); //make it update } } @@ -1149,12 +1131,19 @@ void LLLineEditor::copy() } -void LLLineEditor::spellReplace(SpellMenuBind* spellData) +void LLLineEditor::spell_correct(void* data) { - mText.erase(spellData->wordPositionStart, - spellData->wordPositionEnd - spellData->wordPositionStart); - insert(spellData->word,spellData->wordPositionStart); - mCursorPos+=spellData->word.length() - (spellData->wordPositionEnd-spellData->wordPositionStart); + auto self = static_cast(data); + S32 wordStart = 0, wordLen = 0; + if (self->getWordBoundriesAt(self->calculateCursorFromMouse(self->mLastContextMenuX), &wordStart, &wordLen)) + { + auto word = utf8str_to_wstring(LLMenuGL::sMenuContainer->getActivatedItem()->getLabel()); + LLWStringUtil::replaceTabsWithSpaces(word, 4); + + self->mText.erase(wordStart, wordLen); + self->mText.insert(wordStart, word); + self->mCursorPos += word.length() - wordLen; + } } @@ -3017,15 +3006,6 @@ void LLLineEditor::showContextMenu(S32 x, S32 y) { gEditMenuHandler = this; - /*S32 screen_x, screen_y; - localPointToScreen(x, y, &screen_x, &screen_y); - menu->show(screen_x, screen_y);*/ - - - //setCursorAtLocalPos( x); - S32 wordStart = 0; - S32 wordLen = 0; - S32 pos = calculateCursorFromMouse(x); LLMenuGL* menu = (LLMenuGL*)mContextMenuHandle.get(); if (menu) @@ -3034,77 +3014,33 @@ void LLLineEditor::showContextMenu(S32 x, S32 y) { menu->setVisible(FALSE); } - for (int i = 0;i<(int)suggestionMenuItems.size();i++) - { - SpellMenuBind * tempBind = suggestionMenuItems[i]; - if(tempBind) - { - menu->removeChild((LLMenuItemCallGL *)tempBind->menuItem); - ((LLMenuItemCallGL *)tempBind->menuItem)->die(); - //delete tempBind->menuItem; - //tempBind->menuItem = NULL; - delete tempBind; - } - } - suggestionMenuItems.clear(); // spell_check="true" in xui - menu->setItemVisible("Spelsep", !mReadOnly && mSpellCheckable); if (!mReadOnly && mSpellCheckable) { // search for word matches - bool is_word_part = getWordBoundriesAt(pos, &wordStart, &wordLen); - if (is_word_part) + S32 wordStart = 0; + S32 wordLen = 0; + S32 pos = calculateCursorFromMouse(x); + if (getWordBoundriesAt(pos, &wordStart, &wordLen)) { - const LLWString& text = mText.getWString(); - std::string selectedWord(std::string(text.begin(), text.end()).substr(wordStart,wordLen)); - - if (!glggHunSpell->isSpelledRight(selectedWord)) - { - //misspelled word here, and you have just right clicked on it! - std::vector suggs = glggHunSpell->getSuggestionList(selectedWord); + const auto selectedWord = wstring_to_utf8str(getWText().substr(wordStart, wordLen)); - for (int i = 0; i<(int)suggs.size() ;i++) + if (!glggHunSpell->isSpelledRight(selectedWord)) + { + //misspelled word here, and you have just right clicked on it! + + for (const auto& word : glggHunSpell->getSuggestionList(selectedWord)) { - SpellMenuBind * tempStruct = new SpellMenuBind; - tempStruct->origin = this; - tempStruct->word = suggs[i]; - tempStruct->wordPositionEnd = wordStart + wordLen; - tempStruct->wordPositionStart=wordStart; - LLMenuItemCallGL * suggMenuItem = new LLMenuItemCallGL( - tempStruct->word, spell_correct, NULL, tempStruct); - tempStruct->menuItem = suggMenuItem; - suggestionMenuItems.push_back(tempStruct); - menu->addChild(suggMenuItem); + menu->addChild(new LLMenuItemCallGL(word, spell_correct, nullptr, this)); } - SpellMenuBind * tempStruct = new SpellMenuBind; - tempStruct->origin = this; - tempStruct->word = selectedWord; - tempStruct->wordPositionEnd = wordStart + wordLen; - tempStruct->wordPositionStart=wordStart; - LLMenuItemCallGL * suggMenuItem = new LLMenuItemCallGL( - "Add Word", spell_add, NULL, tempStruct); - tempStruct->menuItem = suggMenuItem; - suggestionMenuItems.push_back(tempStruct); - menu->addChild(suggMenuItem); + menu->addChild(new LLMenuItemCallGL("Add Word", spell_add, nullptr, this)); } } - SpellMenuBind * tempStruct = new SpellMenuBind; - tempStruct->origin = this; - if (glggHunSpell->getSpellCheckHighlight()) - { - tempStruct->word = "Hide Misspellings"; - } - else - { - tempStruct->word = "Show Misspellings"; - } - LLMenuItemCallGL * suggMenuItem = new LLMenuItemCallGL( - tempStruct->word, spell_show, NULL, tempStruct); - tempStruct->menuItem = suggMenuItem; - suggestionMenuItems.push_back(tempStruct); - menu->addChild(suggMenuItem); + bool show = !glggHunSpell->getSpellCheckHighlight(); + auto word = show ? "Show Misspellings" : "Hide Misspellings"; + menu->addChild(new LLMenuItemCallGL(word, spell_show, nullptr, show ? &show : nullptr)); } mLastContextMenuX = x; diff --git a/indra/llui/lllineeditor.h b/indra/llui/lllineeditor.h index c6712b7cf..440407cd8 100644 --- a/indra/llui/lllineeditor.h +++ b/indra/llui/lllineeditor.h @@ -101,16 +101,6 @@ public: /*virtual*/ BOOL handleUnicodeCharHere(llwchar uni_char); /*virtual*/ void onMouseCaptureLost(); - struct SpellMenuBind - { - LLLineEditor* origin; - void * menuItem; - std::string word; - S32 wordPositionStart; - S32 wordPositionEnd; - }; - - virtual void spellReplace(SpellMenuBind* spellData); virtual void insert(std::string what,S32 wher); // LLEditMenuHandler overrides @@ -304,7 +294,6 @@ protected: S32 mEndSpellHere; // the location of the last char on the screen BOOL mSpellCheckable; // set in xui as "spell_check". Default value for a field LLFrameTimer mSpellTimer; - std::vector suggestionMenuItems; S32 mLastContextMenuX; // line history support: diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index c4cdbbdf8..bb29e1782 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -508,26 +508,23 @@ public: void LLTextEditor::spell_correct(void* data) { - SpellMenuBind* tempBind = (SpellMenuBind*)data; - LLTextEditor* line = tempBind->origin; - if(tempBind && line) + auto self = static_cast(data); + S32 wordStart = 0, wordLen = 0; + if (self->getWordBoundriesAt(self->getCursorPosFromLocalCoord(self->mLastContextMenuX, self->mLastContextMenuY, TRUE), &wordStart, &wordLen)) { - LL_INFOS() << tempBind->menuItem->getName() << " : " << tempBind->origin->getName() << " : " << tempBind->word << LL_ENDL; - if(line)line->spellReplace(tempBind); + const auto& word = utf8str_to_wstring(LLMenuGL::sMenuContainer->getActivatedItem()->getLabel()); + + self->remove(wordStart, wordLen, TRUE); + self->insert(wordStart, word, FALSE); + self->mCursorPos += word.length() - wordLen; + self->needsReflow(); } } -void LLTextEditor::spell_show(void * data) +void LLTextEditor::spell_show(void* show) { - SpellMenuBind* tempBind = (SpellMenuBind*)data; - LLTextEditor* line = tempBind->origin; - - if(tempBind && line) - { - BOOL show = (tempBind->word == "Show Misspellings"); - glggHunSpell->setSpellCheckHighlight(show); - } + glggHunSpell->setSpellCheckHighlight(!!show); } @@ -574,11 +571,12 @@ std::vector LLTextEditor::getMisspelledWordsPositions() void LLTextEditor::spell_add(void* data) { - SpellMenuBind* tempBind = (SpellMenuBind*)data; - if(tempBind) + auto self = static_cast(data); + S32 wordStart = 0, wordLen = 0; + if (self->getWordBoundriesAt(self->getCursorPosFromLocalCoord(self->mLastContextMenuX, self->mLastContextMenuY, TRUE), &wordStart, &wordLen)) { - glggHunSpell->addWordToCustomDictionary(tempBind->word); - tempBind->origin->mPrevSpelledText.erase();//make it update + glggHunSpell->addWordToCustomDictionary(wstring_to_utf8str(self->getWText().substr(wordStart, wordLen))); + self->mPrevSpelledText.erase(); //make it update } } @@ -1531,35 +1529,13 @@ BOOL LLTextEditor::handleMouseDown(S32 x, S32 y, MASK mask) } BOOL LLTextEditor::handleRightMouseDown( S32 x, S32 y, MASK mask ) { - setFocus(TRUE); - //setCursorAtLocalPos( x, y, TRUE ); - S32 wordStart = 0; - S32 wordLen = 0; - S32 pos = getCursorPosFromLocalCoord(x,y,TRUE); - - LLMenuGL* menu = (LLMenuGL*)mPopupMenuHandle.get(); - if (menu) - { - for (auto tempBind : suggestionMenuItems) - { - if (tempBind) - { - menu->removeChild(tempBind->menuItem); - tempBind->menuItem->die(); - delete tempBind; - } - } - suggestionMenuItems.clear(); - menu->die(); - } - auto segment = getSegmentAtLocalPos(x, y); const LLStyleSP style = segment ? segment->getStyle() : nullptr; auto submenu = (style && style->isLink()) ? createUrlContextMenu(x, y, style->getLinkHREF()) : nullptr; // Add url menu to base menu if we have a selection, otherwise make it the menu. - menu = (submenu && !hasSelection()) ? submenu : LLUICtrlFactory::getInstance()->buildMenu("menu_texteditor.xml", LLMenuGL::sMenuContainer); + auto menu = (submenu && !hasSelection()) ? submenu : LLUICtrlFactory::getInstance()->buildMenu("menu_texteditor.xml", LLMenuGL::sMenuContainer); mPopupMenuHandle = menu->getHandle(); if (menu) { @@ -1572,62 +1548,29 @@ BOOL LLTextEditor::handleRightMouseDown( S32 x, S32 y, MASK mask ) // spell_check="true" in xui if (!mReadOnly && mSpellCheckable) { - bool is_word_part = getWordBoundriesAt(pos, &wordStart, &wordLen); - if (is_word_part) + S32 wordStart = 0; + S32 wordLen = 0; + S32 pos = getCursorPosFromLocalCoord(x, y, TRUE); + if (getWordBoundriesAt(pos, &wordStart, &wordLen)) { - const LLWString &text = mWText; - std::string selectedWord(std::string(text.begin(), text.end()).substr(wordStart, wordLen)); + const auto selectedWord = wstring_to_utf8str(getWText().substr(wordStart, wordLen)); if (!glggHunSpell->isSpelledRight(selectedWord)) { //misspelled word here, and you have just right clicked on it! - std::vector suggs = glggHunSpell->getSuggestionList(selectedWord); menu->addSeparator(); - for (auto word : suggs) + for (const auto& word : glggHunSpell->getSuggestionList(selectedWord)) { - SpellMenuBind * tempStruct = new SpellMenuBind; - tempStruct->origin = this; - tempStruct->word = word; - tempStruct->wordPositionEnd = wordStart + wordLen; - tempStruct->wordPositionStart = wordStart; - tempStruct->wordY = y; - LLMenuItemCallGL * suggMenuItem = new LLMenuItemCallGL( - tempStruct->word, spell_correct, NULL, tempStruct); - tempStruct->menuItem = suggMenuItem; - suggestionMenuItems.push_back(tempStruct); - menu->addChild(suggMenuItem); + menu->addChild(new LLMenuItemCallGL(word, spell_correct, nullptr, this)); } - SpellMenuBind * tempStruct = new SpellMenuBind; - tempStruct->origin = this; - tempStruct->word = selectedWord; - tempStruct->wordPositionEnd = wordStart + wordLen; - tempStruct->wordPositionStart = wordStart; - tempStruct->wordY = y; - LLMenuItemCallGL * suggMenuItem = new LLMenuItemCallGL( - "Add Word", spell_add, NULL, tempStruct); - tempStruct->menuItem = suggMenuItem; - suggestionMenuItems.push_back(tempStruct); - menu->addChild(suggMenuItem); + menu->addChild(new LLMenuItemCallGL("Add Word", spell_add, nullptr, this)); } } - SpellMenuBind * tempStruct = new SpellMenuBind; - tempStruct->origin = this; - if (glggHunSpell->getSpellCheckHighlight()) - { - tempStruct->word = "Hide Misspellings"; - } - else - { - tempStruct->word = "Show Misspellings"; - } - - LLMenuItemCallGL * suggMenuItem = new LLMenuItemCallGL( - tempStruct->word, spell_show, NULL, tempStruct); - tempStruct->menuItem = suggMenuItem; - suggestionMenuItems.push_back(tempStruct); - menu->addChild(suggMenuItem); + bool show = !glggHunSpell->getSpellCheckHighlight(); + auto word = show ? "Show Misspellings" : "Hide Misspellings"; + menu->addChild(new LLMenuItemCallGL(word, spell_show, nullptr, show ? &show : nullptr)); } mLastContextMenuX = x; @@ -2423,17 +2366,6 @@ BOOL LLTextEditor::canPaste() const } -void LLTextEditor::spellReplace(SpellMenuBind* spellData) -{ - remove( spellData->wordPositionStart, - spellData->wordPositionEnd - spellData->wordPositionStart, TRUE ); - LLWString clean_string = utf8str_to_wstring(spellData->word); - insert(spellData->wordPositionStart, clean_string, FALSE); - mCursorPos+=clean_string.length() - (spellData->wordPositionEnd-spellData->wordPositionStart); - needsReflow(); -} - - // paste from clipboard void LLTextEditor::paste() { diff --git a/indra/llui/lltexteditor.h b/indra/llui/lltexteditor.h index b5d3eb699..081210b0e 100644 --- a/indra/llui/lltexteditor.h +++ b/indra/llui/lltexteditor.h @@ -126,16 +126,6 @@ public: virtual BOOL isDirty() const { return( mLastCmd != NULL || (mPristineCmd && (mPristineCmd != mLastCmd)) ); } BOOL isSpellDirty() const { return mWText != mPrevSpelledText; } // Returns TRUE if user changed value at all void resetSpellDirty() { mPrevSpelledText = mWText; } // Clear dirty state - - struct SpellMenuBind - { - LLTextEditor* origin; - LLMenuItemCallGL * menuItem; - std::string word; - S32 wordPositionStart; - S32 wordPositionEnd; - S32 wordY; - }; // LLEditMenuHandler interface virtual void undo(); @@ -151,8 +141,6 @@ public: virtual void paste(); virtual BOOL canPaste() const; - virtual void spellReplace(SpellMenuBind* spellData); - virtual void updatePrimary(); virtual void copyPrimary(); virtual void pastePrimary(); @@ -580,7 +568,6 @@ private: typedef std::vector line_list_t; //to keep track of what we have to remove before showing menu - std::vector suggestionMenuItems; S32 mLastContextMenuX; S32 mLastContextMenuY; From a6cc7eda613a76aa2b1154dbdbeca585eb286afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Sun, 20 Oct 2019 01:15:06 -0400 Subject: [PATCH 03/43] This has been unstaged for too long by accident --- autobuild.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild.xml b/autobuild.xml index 31d81cd87..3bb082e87 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -865,7 +865,7 @@ version - 1.10.10.190360453 + 2.00.03.192211300 fontconfig From a1e74c32866e527696ba1bbc553186f4ed00e2e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Sun, 20 Oct 2019 01:17:40 -0400 Subject: [PATCH 04/43] MakeOutfitDialog should use deltas for xui --- .../xui/en-us/floater_new_outfit_dialog.xml | 126 +++++++++--------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/indra/newview/skins/default/xui/en-us/floater_new_outfit_dialog.xml b/indra/newview/skins/default/xui/en-us/floater_new_outfit_dialog.xml index a07137430..ca774a557 100644 --- a/indra/newview/skins/default/xui/en-us/floater_new_outfit_dialog.xml +++ b/indra/newview/skins/default/xui/en-us/floater_new_outfit_dialog.xml @@ -7,223 +7,223 @@ label="Save" label_selected="Save" left="171" mouse_opaque="true" name="Save" scale_image="true" width="82" />