Adding HeadBugFix button to the ACE Options dialog (missing file)

#1738
This commit is contained in:
ViperMaul
2015-07-27 21:35:11 -07:00
committed by SilentSpike
parent c9d9f78e5b
commit 675996d67b

View File

@ -247,14 +247,22 @@ class ACE_settingsMenu {
text = CSTRING(OpenExport); text = CSTRING(OpenExport);
x = X_PART(18); x = X_PART(18);
action = QUOTE(if (GVAR(serverConfigGeneration) > 0) then {createDialog 'ACE_serverSettingsMenu'; }); action = QUOTE(if (GVAR(serverConfigGeneration) > 0) then {createDialog 'ACE_serverSettingsMenu'; });
}; };
class action_debug: actionClose { class action_debug: actionClose {
idc = 1102; idc = 1102;
text = CSTRING(DumpDebug); text = CSTRING(DumpDebug);
x = X_PART(26.5); x = X_PART(26.1);
action = QUOTE([] call FUNC(debugDumpToClipboard)); action = QUOTE([] call FUNC(debugDumpToClipboard));
tooltip = CSTRING(DumpDebugTooltip); tooltip = CSTRING(DumpDebugTooltip);
}; };
class action_headBugFix: actionClose {
idc = 1102;
text = CSTRING(headBugFix);
x = X_PART(34);
w = W_PART(5);
action = QUOTE(0 spawn EFUNC(common,headBugFix); closedialog 0;);
tooltip = CSTRING(headBugFixTooltip);
};
}; };
}; };
class ACE_serverSettingsMenu: ACE_settingsMenu { class ACE_serverSettingsMenu: ACE_settingsMenu {