fix: propagate configured frame rate to widgets

This commit is contained in:
CJ van den Berg 2024-10-20 21:33:01 +02:00
parent 87addc97de
commit 03cdcd260e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 3 additions and 4 deletions

View file

@ -323,8 +323,7 @@ pub const Editor = struct {
fn init(self: *Self, allocator: Allocator, n: Plane) void {
const logger = log.logger("editor");
var frame_rate = tp.env.get().num("frame-rate");
if (frame_rate == 0) frame_rate = 60;
const frame_rate = tp.env.get().num("frame-rate");
const indent_size = tui.current().config.indent_size;
const tab_width = tui.current().config.tab_width;
self.* = Self{