Skip to content

Commit

Permalink
fix(SquirrelPanel): properties custom getter got wrong names
Browse files Browse the repository at this point in the history
Closes #494
  • Loading branch information
lotem committed Jan 31, 2021
1 parent 34d24e2 commit d509c77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SquirrelPanel.m
Original file line number Diff line number Diff line change
Expand Up @@ -678,15 +678,15 @@ @implementation SquirrelPanel {
NSTimer *_statusTimer;
}

- (BOOL)isLinear {
- (BOOL)linear {
return _view.currentTheme.linear;
}

- (BOOL)isVertical {
- (BOOL)vertical {
return _view.currentTheme.vertical;
}

- (BOOL)isInlinePreedit {
- (BOOL)inlinePreedit {
return _view.currentTheme.inlinePreedit;
}

Expand Down

0 comments on commit d509c77

Please sign in to comment.