mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-20 14:49:59 +01:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user