瀏覽代碼

Fix the cursor colors selection

Signed-off-by: Christoph Lohmann <20h@r-36.net>
Quentin Rameau 9 年之前
父節點
當前提交
293f573efd
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      st.c

+ 2 - 3
st.c

@@ -3865,13 +3865,12 @@ xdrawcursor(void)
 			g.fg = defaultcs;
 		}
 	} else {
-		g.fg = defaultfg;
 		if (ena_sel && selected(term.c.x, term.c.y)) {
-			g.bg = defaultcs;
 			drawcol = dc.col[defaultrcs];
+			g.fg = defaultfg;
+			g.bg = defaultrcs;
 		} else {
 			drawcol = dc.col[defaultcs];
-			g.bg = defaultrcs;
 		}
 	}