Skip to content

Commit

Permalink
Fix for #9: "transparency of 0 in defaults not respected"
Browse files Browse the repository at this point in the history
  • Loading branch information
Reed Esau committed Aug 1, 2014
1 parent d87df41 commit 2fa75b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/thematic/gui.vim
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function! thematic#gui#setTransparency(th) abort
if l:tr > 100
let l:tr = 100
endif
if l:tr > 0
if l:tr >= 0
try
execute 'set transparency=' . l:tr
catch
Expand Down

0 comments on commit 2fa75b8

Please sign in to comment.