about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--source_edit.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/source_edit.lua b/source_edit.lua
index ab2fa33..b927cb5 100644
--- a/source_edit.lua
+++ b/source_edit.lua
@@ -513,7 +513,7 @@ end
 
 function edit.update_font_settings(State, font_height)
   State.font_height = font_height
-  love.graphics.setFont(love.graphics.newFont(Editor_state.font_height))
+  love.graphics.setFont(love.graphics.newFont(State.font_height))
   State.line_height = math.floor(font_height*1.3)
   State.em = App.newText(love.graphics.getFont(), 'm')
   Text_cache = {}