a modern tui library written in zig

subscribeToColorSchemeUpdates needs a mutable reference

authored by Jeffrey C. Ollie and committed by rockorager.dev 2cc1eb77 c89b75eb

Changed files
+1 -1
src
+1 -1
src/Vaxis.zig
··· 953 953 /// capability. Support can be detected by checking the value of 954 954 /// vaxis.caps.color_scheme_updates. The initial scheme will be reported when 955 955 /// subscribing. 956 - pub fn subscribeToColorSchemeUpdates(self: Vaxis, tty: AnyWriter) !void { 956 + pub fn subscribeToColorSchemeUpdates(self: *Vaxis, tty: AnyWriter) !void { 957 957 try tty.writeAll(ctlseqs.color_scheme_request); 958 958 try tty.writeAll(ctlseqs.color_scheme_set); 959 959 self.state.color_scheme_updates = true;