New ALT key selects alternative mouse Pointer

Maintain ALT to activate the selected mouse Pointer. Also possible to ALT LOCK for maintaining the cursor. Local popup window allows selecting. Changed the View options selection to match this popup approach.
This commit is contained in:
Bruno Herbelin
2023-08-27 17:49:46 +02:00
parent 7fcb53c7d0
commit 262c6fd8ab
11 changed files with 416 additions and 270 deletions

View File

@@ -273,6 +273,7 @@ struct Application
bool smooth_transition;
bool proportional_grid;
int mouse_pointer;
bool mouse_pointer_lock;
std::vector<float> mouse_pointer_strength;
bool action_history_follow_view;
bool show_tooptips;
@@ -339,7 +340,8 @@ struct Application
smooth_transition = false;
save_version_snapshot = false;
proportional_grid = true;
mouse_pointer = 0;
mouse_pointer = 1;
mouse_pointer_lock = false;
mouse_pointer_strength = {0.5f, 0.5f, 0.5f, 0.5f, 0.5f, 0.5f};
action_history_follow_view = false;
show_tooptips = true;