Skip to content

Commit

Permalink
allow fractional sizes in minimap
Browse files Browse the repository at this point in the history
This is especially useful on retina screens if you want to use the
smaller pixels.
  • Loading branch information
jacekkopecky committed Feb 16, 2015
1 parent a0aabd5 commit 4d1d89b
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 4d1d89b

Please sign in to comment.