Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Sep 4, 2020
1 parent 81fa2a5 commit 7e7992f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/highlighter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,9 @@ class Highlighter {

final currentColor = current == null
? null
: current.isPrimary ? _primaryColor : _secondaryColor;
: current.isPrimary
? _primaryColor
: _secondaryColor;
var foundCurrent = false;
for (var highlight in highlightsByColumn) {
final startLine = highlight?.span.start.line;
Expand Down

0 comments on commit 7e7992f

Please sign in to comment.