mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
disable marker editing for polylines (#6596)
This commit is contained in:
parent
52abed1d07
commit
95fbdbce65
@ -55,7 +55,7 @@
|
||||
|
||||
//check if entity under mouse is a user marker
|
||||
if (_mouseOverType isEqualTo "marker") then {
|
||||
if !((_marker find "_USER_DEFINED") isEqualTo -1) then {
|
||||
if (!((_marker find "_USER_DEFINED") isEqualTo -1) && ((markerShape _marker) isEqualTo "ICON")) then {
|
||||
GVAR(editingMarker) = _marker;
|
||||
//hide marker which is being edited because if the user cancels editing, it will still exist unchanged
|
||||
GVAR(editingMarker) setMarkerAlphaLocal 0;
|
||||
|
Loading…
Reference in New Issue
Block a user