Use highlight for current items.
* lisp/mpc.el (mpc-select-make-overlay, mpc-tagbrowser-all-select): Apply highlight face instead of region face.
This commit is contained in:
parent
0f4efd1220
commit
e57a0c3d38
1 changed files with 2 additions and 2 deletions
|
@ -1263,7 +1263,7 @@ If PLAYLIST is t or nil or missing, use the main playlist."
|
|||
(let ((ol (make-overlay
|
||||
(line-beginning-position) (line-beginning-position 2))))
|
||||
(overlay-put ol 'mpc-select t)
|
||||
(overlay-put ol 'face 'region)
|
||||
(overlay-put ol 'face 'highlight)
|
||||
(overlay-put ol 'evaporate t)
|
||||
(push ol mpc-select)))
|
||||
|
||||
|
@ -1562,7 +1562,7 @@ when constructing the set of constraints."
|
|||
(move-overlay mpc-tagbrowser-all-ol
|
||||
(point) (line-beginning-position 2))
|
||||
(let ((ol (make-overlay (point) (line-beginning-position 2))))
|
||||
(overlay-put ol 'face 'region)
|
||||
(overlay-put ol 'face 'highlight)
|
||||
(overlay-put ol 'evaporate t)
|
||||
(setq-local mpc-tagbrowser-all-ol ol))))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue