diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-04-27 17:41:49 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-05-01 16:38:01 +0200 |
commit | ac54292d69984e8ecc38dc53321c20cecea5d421 (patch) | |
tree | 5c5dbe2a3b7f7a29ba6439f1d99c171b8406e3ae /app/javascript/flavours/glitch/features/ui | |
parent | be6ef1947e5847e57866a225207d9ac6b07b5b9c (diff) |
Add high color privacy icons
Fixes #1015
Diffstat (limited to 'app/javascript/flavours/glitch/features/ui')
-rw-r--r-- | app/javascript/flavours/glitch/features/ui/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/index.js b/app/javascript/flavours/glitch/features/ui/index.js index f95571d25..13c71337a 100644 --- a/app/javascript/flavours/glitch/features/ui/index.js +++ b/app/javascript/flavours/glitch/features/ui/index.js @@ -68,6 +68,7 @@ const mapStateToProps = state => ({ dropdownMenuIsOpen: state.getIn(['dropdown_menu', 'openId']) !== null, unreadNotifications: state.getIn(['notifications', 'unread']), showFaviconBadge: state.getIn(['local_settings', 'notifications', 'favicon_badge']), + hicolorPrivacyIcons: state.getIn(['local_settings', 'hicolor_privacy_icons']), }); const keyMap = { @@ -446,6 +447,7 @@ export default class UI extends React.Component { 'wide': isWide, 'system-font': this.props.systemFontUi, 'navbar-under': navbarUnder, + 'hicolor-privacy-icons': this.props.hicolorPrivacyIcons, }); const handlers = { |