1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00

make OSC 4 actually change the palette

This commit is contained in:
Wez Furlong 2019-06-01 16:15:37 -07:00
parent 71fd9c3ed7
commit 4193442ec8

View File

@ -2113,6 +2113,9 @@ impl<'a> Performer<'a> {
palette_index,
colorspec.to_rgb_string()
);
if palette_index < 256 {
self.palette.colors.0[palette_index] = colorspec;
}
}
}
}