Skip to content

Commit

Permalink
Make default terminal texture atlas dynamic
Browse files Browse the repository at this point in the history
Part of #54176
  • Loading branch information
Tyriar committed Jul 12, 2018
1 parent a46cb2d commit 076a754
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ configurationRegistry.registerConfiguration({
'description': nls.localize('terminal.integrated.experimentalTextureCachingStrategy', "Controls how the terminal stores glyph textures. `static` is the default and uses a fixed texture to draw the characters from. `dynamic` will draw the characters to the texture as they are needed, this should boost overall performance at the cost of slightly increased draw time the first time a character is drawn. `dynamic` will eventually become the default and this setting will be removed. Changes to this setting will only apply to new terminals."),
'type': 'string',
'enum': ['static', 'dynamic'],
'default': 'static'
'default': 'dynamic'
},
}
});
Expand Down

0 comments on commit 076a754

Please sign in to comment.