From e7cf551e2298f7e941ecb7f594a6747739d9a396 Mon Sep 17 00:00:00 2001 From: rxi Date: Tue, 26 May 2020 10:33:07 +0100 Subject: [PATCH] Changed EmptyView text from `empty` to `lite` --- data/core/rootview.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/core/rootview.lua b/data/core/rootview.lua index 97fc1c1..3266ace 100644 --- a/data/core/rootview.lua +++ b/data/core/rootview.lua @@ -13,7 +13,7 @@ function EmptyView:draw() self:draw_background(style.background) local pos = self.position local x, y, w, h = pos.x, pos.y, self.size.x, self.size.y - local _, y = common.draw_text(style.big_font, style.dim, "empty", "center", x, y, w, h) + local _, y = common.draw_text(style.big_font, style.dim, "lite", "center", x, y, w, h) local lines = { { fmt = "%s to run a command", cmd = "core:command-finder" }, { fmt = "%s to open a file from the project", cmd = "core:file-finder" },