From b92df7133ea71c67eef7dedbc3b333aa7ea2c553 Mon Sep 17 00:00:00 2001 From: Cinder <cinder@sdf.org> Date: Sun, 26 Oct 2014 09:07:16 -0600 Subject: [PATCH] Hack, all glory to this bug fix. LLHackyHackPlacesPanel for search doesn't build a landmark panel --- indra/newview/llpanelplaces.cpp | 29 +++++++++++++++++++ indra/newview/llpanelplaces.h | 19 ++++++++---- .../default/xui/en/floater_directory.xml | 2 +- 3 files changed, 43 insertions(+), 7 deletions(-) diff --git a/indra/newview/llpanelplaces.cpp b/indra/newview/llpanelplaces.cpp index 2be96b9b78..de11e866ec 100755 --- a/indra/newview/llpanelplaces.cpp +++ b/indra/newview/llpanelplaces.cpp @@ -1217,3 +1217,32 @@ static void onSLURLBuilt(std::string& slurl) LLNotificationsUtil::add("CopySLURL", args); } + +// Ahhhhhhhhhhh! +static LLPanelInjector<LLHackyHackPlacesPanel> t_hacky_places("hacky_places"); + +void LLHackyHackPlacesPanel::createTabs() +{ + if (!LLTeleportHistory::getInstance() && mTabsCreated) return; + + LLTeleportHistoryPanel* teleport_history_panel = new LLTeleportHistoryPanel(); + if (teleport_history_panel) + { + teleport_history_panel->setPanelPlacesButtons(this); + + mTabContainer->addTabPanel(LLTabContainer::TabPanelParams(). + panel(teleport_history_panel). + label(getString("teleport_history_tab_title")). + insert_at(LLTabContainer::END)); + } + + mTabContainer->selectFirstTab(); + + mActivePanel = dynamic_cast<LLPanelPlacesTab*>(mTabContainer->getCurrentPanel()); + + // Filter applied to show all items. + if (mActivePanel) + mActivePanel->onSearchEdit(mActivePanel->getFilterSubString()); + + mTabsCreated = true; +} diff --git a/indra/newview/llpanelplaces.h b/indra/newview/llpanelplaces.h index c3d1b9bc53..5939b4fbfa 100755 --- a/indra/newview/llpanelplaces.h +++ b/indra/newview/llpanelplaces.h @@ -64,7 +64,7 @@ public: void changedParcelSelection(); // Called once on agent inventory first change to find out when inventory gets usable // and to create "My Landmarks" and "Teleport History" tabs. - void createTabs(); + virtual void createTabs(); // Called when we receive the global 3D position of a parcel. void changedGlobalPos(const LLVector3d &global_pos); @@ -80,6 +80,12 @@ public: bool tabsCreated() { return mTabsCreated;} /*virtual*/ S32 notifyParent(const LLSD& info); + +protected: + LLPanelPlacesTab* mActivePanel; + LLTabContainer* mTabContainer; + // Holds info whether "My Landmarks" and "Teleport History" tabs have been created. + bool mTabsCreated; private: void onLandmarkLoaded(LLLandmark* landmark); @@ -109,8 +115,6 @@ private: LLPanelPlaceInfo* getCurrentInfoPanel(); LLFilterEditor* mFilterEditor; - LLPanelPlacesTab* mActivePanel; - LLTabContainer* mTabContainer; LLPanelPlaceProfile* mPlaceProfile; LLPanelLandmarkInfo* mLandmarkInfo; @@ -148,12 +152,15 @@ private: bool isLandmarkEditModeOn; - // Holds info whether "My Landmarks" and "Teleport History" tabs have been created. - bool mTabsCreated; - LLSafeHandle<LLParcelSelection> mParcel; boost::signals2::connection mAgentParcelChangedConnection; }; +// This crazy little class is just a workaround for directory search until the landmarks panel is fixed! +class LLHackyHackPlacesPanel : public LLPanelPlaces +{ + void createTabs(); +}; + #endif //LL_LLPANELPLACES_H diff --git a/indra/newview/skins/default/xui/en/floater_directory.xml b/indra/newview/skins/default/xui/en/floater_directory.xml index 3c6d0cb7fe..dc92d62536 100644 --- a/indra/newview/skins/default/xui/en/floater_directory.xml +++ b/indra/newview/skins/default/xui/en/floater_directory.xml @@ -221,7 +221,7 @@ Your search terms were missing a query string. bottom="-1" left="0" width="313" - class="panel_places" + class="hacky_places" filename="panel_places.xml" /> <panel follows="all" -- GitLab