Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Unlink fullscreen to fullscreen warning state
Browse files Browse the repository at this point in the history
Auditors: @diracdeltas

Fix #2876
  • Loading branch information
bbondy committed Aug 2, 2016
1 parent b18c745 commit 1b88966
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/components/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,8 @@ class Main extends ImmutableComponent {
.filter((site) => site.get('tags')
.includes(siteTags.BOOKMARK_FOLDER)) || emptyMap
: null}
isFullScreen={frame.get('isFullScreen') && frame.get('showFullScreenWarning')}
isFullScreen={frame.get('isFullScreen')}
showFullScreenWarning={frame.get('showFullScreenWarning')}
findbarShown={frame.get('findbarShown')}
findbarSelected={frame.get('findbarSelected')}
findDetail={frame.get('findDetail')}
Expand Down

1 comment on commit 1b88966

@diracdeltas
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.