diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-03-14 12:02:41 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-03-14 12:02:41 +0000 |
commit | 0b32fa81b6eb1cec4acb3ac78ffb227e6c78e0fb (patch) | |
tree | f45ada939fcb8858d5e85dcf12b0e652cfc709c3 /input.c | |
parent | f33d2ab29ec62fc6c918f5927b9b680dc54fc3c6 (diff) | |
parent | 0425e3178d2f7cc0d33cd9aa8ed74b096b31727e (diff) | |
download | rtmux-0b32fa81b6eb1cec4acb3ac78ffb227e6c78e0fb.tar.gz rtmux-0b32fa81b6eb1cec4acb3ac78ffb227e6c78e0fb.tar.bz2 rtmux-0b32fa81b6eb1cec4acb3ac78ffb227e6c78e0fb.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2340,7 +2340,7 @@ input_osc_10(struct input_ctx *ictx, const char *p) if (sscanf(p, "rgb:%2x/%2x/%2x", &r, &g, &b) != 3) goto bad; - wp->colgc.fg = colour_join_rgb(r, g, b); + wp->style.gc.fg = colour_join_rgb(r, g, b); wp->flags |= PANE_REDRAW; return; @@ -2359,7 +2359,7 @@ input_osc_11(struct input_ctx *ictx, const char *p) if (sscanf(p, "rgb:%2x/%2x/%2x", &r, &g, &b) != 3) goto bad; - wp->colgc.bg = colour_join_rgb(r, g, b); + wp->style.gc.bg = colour_join_rgb(r, g, b); wp->flags |= PANE_REDRAW; return; |