mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
term: use 'left_ptr' instead of 'hand2' as cursor when client is mouse grabbing
This commit is contained in:
parent
32e84fbc54
commit
2ea32398c3
2 changed files with 5 additions and 3 deletions
|
|
@ -36,6 +36,8 @@
|
|||
debug logging has been enabled.
|
||||
* OSC 4 (_Set Color_) now updates already rendered cells, excluding
|
||||
scrollback.
|
||||
* Mouse cursor from `hand2` to `left_ptr` when client is capturing the
|
||||
mouse.
|
||||
|
||||
|
||||
### Deprecated
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
static const char *const XCURSOR_LEFT_PTR = "left_ptr";
|
||||
static const char *const XCURSOR_TEXT = "text";
|
||||
static const char *const XCURSOR_HAND2 = "hand2";
|
||||
//static const char *const XCURSOR_HAND2 = "hand2";
|
||||
|
||||
bool
|
||||
term_to_slave(struct terminal *term, const void *_data, size_t len)
|
||||
|
|
@ -2204,9 +2204,9 @@ void
|
|||
term_xcursor_update(struct terminal *term)
|
||||
{
|
||||
term->xcursor =
|
||||
term->is_searching ? XCURSOR_LEFT_PTR :
|
||||
term->is_searching ? XCURSOR_LEFT_PTR : /* TODO: something different? */
|
||||
selection_enabled(term) ? XCURSOR_TEXT :
|
||||
XCURSOR_HAND2;
|
||||
XCURSOR_LEFT_PTR;
|
||||
|
||||
render_xcursor_set(term);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue