Skip to content

Commit

Permalink
Merge pull request #271 from jacekkopecky/retina-fractional-sizes
Browse files Browse the repository at this point in the history
🐛 Fix size settings not allowing float numbers
  • Loading branch information
abe33 committed Feb 16, 2015
2 parents a8a0871 + 4d1d89b commit 9a9df90
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/main.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ class Main
default: true
description: 'If this option is enabled and Soft Wrap is checked then the Minimap max width is set to the Preferred Line Length value.'
charWidth:
type: 'integer'
type: 'number'
default: 1
minimum: 1
minimum: .5
charHeight:
type: 'integer'
type: 'number'
default: 2
minimum: 1
minimum: .5
interline:
type: 'integer'
type: 'number'
default: 1
minimum: 0
description: 'The space between lines in the minimap in pixels.'
Expand Down

0 comments on commit 9a9df90

Please sign in to comment.