diff options
Diffstat (limited to 'indra/llui')
| -rw-r--r-- | indra/llui/llfolderviewitem.cpp | 9 | ||||
| -rw-r--r-- | indra/llui/llfolderviewmodel.h | 2 | 
2 files changed, 8 insertions, 3 deletions
| diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp index 4a9ac56d9f..6ddbf26639 100644 --- a/indra/llui/llfolderviewitem.cpp +++ b/indra/llui/llfolderviewitem.cpp @@ -2077,12 +2077,17 @@ BOOL LLFolderViewFolder::handleDoubleClick( S32 x, S32 y, MASK mask )  	}  	if( !handled )  	{ -        static LLUICachedControl<bool> double_click_new_window("MultiModeDoubleClickOpenWindow", false); -        if (double_click_new_window) +        static LLUICachedControl<U32> double_click_action("MultiModeDoubleClickFolder", false); +        if (double_click_action == 1)          {              getViewModelItem()->navigateToFolder(true);              return TRUE;          } +        if (double_click_action == 2) +        { +            getViewModelItem()->navigateToFolder(false, true); +            return TRUE; +        }  		if(mIndentation < x && x < mIndentation + (isCollapsed() ? 0 : mArrowSize) + mTextPad)  		{  			// don't select when user double-clicks plus sign diff --git a/indra/llui/llfolderviewmodel.h b/indra/llui/llfolderviewmodel.h index b1db9489fd..b5a765fab3 100644 --- a/indra/llui/llfolderviewmodel.h +++ b/indra/llui/llfolderviewmodel.h @@ -160,7 +160,7 @@ public:  	virtual void closeItem( void ) = 0;  	virtual void selectItem(void) = 0; -    virtual void navigateToFolder(bool new_window = false) = 0; +    virtual void navigateToFolder(bool new_window = false, bool change_mode = false) = 0;      virtual BOOL isItemWearable() const { return FALSE; } | 
