Skip to content

Commit 6508b4d

Browse files
author
Sander Hoksbergen
committed
1 parent a944c07 commit 6508b4d

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/RemoteTech2/FlightComputer/UIPartActionMenuPatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static BaseEvent Wrap(BaseEvent original, Action<BaseEvent, bool> passthr
6565
return new_event;
6666
}
6767

68-
[IgnoreSignalDelayAttribute]
68+
[IgnoreControlAttribute]
6969
public void Invoke()
7070
{
7171
mPassthrough.Invoke(mEvent, mIgnoreDelay);

src/RemoteTech2/Modules/ModuleRTAntenna.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,20 +202,23 @@ public void ActionClose(KSPActionParam param)
202202
}
203203

204204
[KSPEvent(name = "OverrideTarget", active = true, guiActiveUnfocused = true, unfocusedRange = 5, externalToEVAOnly = true, guiName = "[EVA] Set Target")]
205+
[IgnoreControlAttribute]
205206
[IgnoreSignalDelayAttribute]
206207
public void OverrideTarget()
207208
{
208209
(new AntennaWindow(this)).Show();
209210
}
210211

211212
[KSPEvent(name = "OverrideOpen", active = true, guiActiveUnfocused = true, unfocusedRange = 5, externalToEVAOnly = true, guiName = "[EVA] Force Open")]
213+
[IgnoreControlAttribute]
212214
[IgnoreSignalDelayAttribute]
213215
public void OverrideOpen()
214216
{
215217
EventOpen();
216218
}
217219

218220
[KSPEvent(name = "OverrideClose", active = true, guiActiveUnfocused = true, unfocusedRange = 5, externalToEVAOnly = true, guiName = "[EVA] Force Close")]
221+
[IgnoreControlAttribute]
219222
[IgnoreSignalDelayAttribute]
220223
public void OverrideClose()
221224
{

0 commit comments

Comments
 (0)