diff options
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index e9014f3f..f97e5618 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -349,7 +349,7 @@ function M.goto_line(line) if not line then local button, value = ui.dialogs.inputbox{ title = _L['Go To'], informative_text = _L['Line Number:'], - button1 = _L['_OK'], button2 = _L['_Cancel'] + button1 = _L['OK'], button2 = _L['Cancel'] } line = tonumber(value) if button ~= 1 or not line then return end |