File tree 2 files changed +5
-5
lines changed
src/components/structures
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,10 @@ module.exports = React.createClass({
101
101
return (
102
102
< div className = "mx_BottomLeftMenu" >
103
103
< div className = "mx_BottomLeftMenu_options" >
104
+ < div className = "mx_BottomLeftMenu_people" onClick = { this . onPeopleClick } onMouseEnter = { this . onPeopleMouseEnter } onMouseLeave = { this . onPeopleMouseLeave } >
105
+ < TintableSvg src = "img/icons-people.svg" width = "25" height = "25" />
106
+ { this . getLabel ( "Chat to someone" , this . state . peopleHover ) }
107
+ </ div >
104
108
< div className = "mx_BottomLeftMenu_directory" onClick = { this . onDirectoryClick } onMouseEnter = { this . onDirectoryMouseEnter } onMouseLeave = { this . onDirectoryMouseLeave } >
105
109
< TintableSvg src = "img/icons-directory.svg" width = "25" height = "25" />
106
110
{ this . getLabel ( "Room directory" , this . state . directoryHover ) }
@@ -109,10 +113,6 @@ module.exports = React.createClass({
109
113
< TintableSvg src = "img/icons-create-room.svg" width = "25" height = "25" />
110
114
{ this . getLabel ( "Create new room" , this . state . roomsHover ) }
111
115
</ div >
112
- < div className = "mx_BottomLeftMenu_people" onClick = { this . onPeopleClick } onMouseEnter = { this . onPeopleMouseEnter } onMouseLeave = { this . onPeopleMouseLeave } >
113
- < TintableSvg src = "img/icons-people.svg" width = "25" height = "25" />
114
- { this . getLabel ( "New direct message" , this . state . peopleHover ) }
115
- </ div >
116
116
< div className = "mx_BottomLeftMenu_settings" onClick = { this . onSettingsClick } onMouseEnter = { this . onSettingsMouseEnter } onMouseLeave = { this . onSettingsMouseLeave } >
117
117
< TintableSvg src = "img/icons-settings.svg" width = "25" height = "25" />
118
118
{ this . getLabel ( "Settings" , this . state . settingsHover ) }
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ module.exports = React.createClass({
29
29
propTypes : {
30
30
userId : React . PropTypes . string , // if showing an orphaned MemberInfo page, this is set
31
31
roomId : React . PropTypes . string , // if showing panels for a given room, this is set
32
- collapsed : React . PropTypes . bool ,
32
+ collapsed : React . PropTypes . bool , // currently unused property to request for a minimized view of the panel
33
33
} ,
34
34
35
35
Phase : {
You can’t perform that action at this time.
0 commit comments