mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-24 22:07:36 +00:00
(x_display_and_set_cursor): Display cursor of
non-selected windows depending on the setting of cursor_in_non_selected_windows.
This commit is contained in:
parent
d6d26ed3fb
commit
e55a0b7912
1 changed files with 3 additions and 1 deletions
|
|
@ -10344,7 +10344,9 @@ x_display_and_set_cursor (w, on, hpos, vpos, x, y)
|
|||
if (w != XWINDOW (selected_window)
|
||||
|| f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
|
||||
{
|
||||
if (MINI_WINDOW_P (w))
|
||||
extern int cursor_in_non_selected_windows;
|
||||
|
||||
if (MINI_WINDOW_P (w) || !cursor_in_non_selected_windows)
|
||||
new_cursor_type = NO_CURSOR;
|
||||
else
|
||||
new_cursor_type = HOLLOW_BOX_CURSOR;
|
||||
|
|
|
|||
Loading…
Reference in a new issue