diff options
| author | mitchell <unknown> | 2020-01-04 23:38:22 -0500 | 
|---|---|---|
| committer | mitchell <unknown> | 2020-01-04 23:38:22 -0500 | 
| commit | 51c270affe753fcfae24887ee940e8061c631d7d (patch) | |
| tree | 7c148fbb048519235e7412a74624da28e23fc84e /lexlua/themes/light.lua | |
| parent | 6419e330dccb08bb95e14c039df31578bf49cfb1 (diff) | |
| download | scintilla-mirror-51c270affe753fcfae24887ee940e8061c631d7d.tar.gz | |
Always use string property values in lexlua themes.
Diffstat (limited to 'lexlua/themes/light.lua')
| -rw-r--r-- | lexlua/themes/light.lua | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lexlua/themes/light.lua b/lexlua/themes/light.lua index 1f1369ea1..e3d1a63eb 100644 --- a/lexlua/themes/light.lua +++ b/lexlua/themes/light.lua @@ -51,11 +51,11 @@ property['color.light_red'] = '#C08080'  property['color.light_blue'] = '#80CCFF'  -- Default style. -property['font'], property['fontsize'] = 'Bitstream Vera Sans Mono', 10 +property['font'], property['fontsize'] = 'Bitstream Vera Sans Mono', '10'  if WIN32 then    property['font'] = 'Courier New'  elseif OSX then -  property['font'], property['fontsize'] = 'Monaco', 12 +  property['font'], property['fontsize'] = 'Monaco', '12'  end  -- Predefined styles.  | 
