Crosshair coredump fix. Crosshair styles.

Fixed possibilities for coredumps when having a fixed cross hair and
modifying the window size to the extend the crosshair would now be out
of the window boundaries.

Implemented a Crosshair style switch from Full Cross to Vertical Line
to Horizontal Line.
This commit is contained in:
Raimund Sacherer 2023-11-01 10:32:46 +01:00
parent c742f640af
commit 9a3ac3a406
8 changed files with 63 additions and 26 deletions

View file

@ -564,10 +564,12 @@ struct terminal {
} search;
struct {
int width;
bool active;
bool position_fixed;
bool use_mouse_position;
bool use_mouse_pixel_coordinates;
enum crosshair_style style;
} crosshair;
struct wayland *wl;