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

Commit

Permalink
Swap find bar prev/next buttons (fixes #3974)
Browse files Browse the repository at this point in the history
  • Loading branch information
Liunkae authored Sep 14, 2016
1 parent 06120ea commit 8bb2fbe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions js/components/findbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,16 @@ class FindBar extends ImmutableComponent {
onClick={this.onClear} />
</div>
<span className='findMatchText'>{findMatchText}</span>
<Button iconClass='findButton fa-caret-down'
inlineStyles={findBarStyle}
className='findButton smallButton findNext'
disabled={this.numberOfMatches <= 0}
onClick={this.onFindNext} />
<Button iconClass='findButton fa-caret-up'
inlineStyles={findBarStyle}
className='findButton smallButton findPrev'
disabled={this.numberOfMatches <= 0}
onClick={this.onFindPrev} />
<Button iconClass='findButton fa-caret-down'
inlineStyles={findBarStyle}
className='findButton smallButton findNext'
disabled={this.numberOfMatches <= 0}
onClick={this.onFindNext} />
<SwitchControl
id='caseSensitivityCheckbox'
checkedOn={this.isCaseSensitive}
Expand Down

0 comments on commit 8bb2fbe

Please sign in to comment.