Skip to content

Commit

Permalink
fix some issues with presets after export ui updates (#856)
Browse files Browse the repository at this point in the history
  • Loading branch information
commy2 committed Dec 26, 2017
1 parent 86446d3 commit 35557de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/settings/fnc_export.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Author:
---------------------------------------------------------------------------- */
#include "script_component.hpp"

params [["_source", "client", [""]], ["_exportDefault", false, [false]]];
params [["_source", "client", [""]], ["_exportDefault", true, [false]]];

private _info = "";
private _temp = [];
Expand Down
2 changes: 1 addition & 1 deletion addons/settings/fnc_gui_settingOverwrite.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ _controlsGroup setVariable [QFUNC(auto_check_overwrite), {

if (!cbChecked _ctrlOverwriteClient) then {
_ctrlOverwriteClient cbSetChecked true;
[_ctrlOverwriteClient, true] call (_ctrlOverwriteClient getVariable QFUNC(event));
[_ctrlOverwriteClient, 1] call (_ctrlOverwriteClient getVariable QFUNC(event));
};
};
}];
Expand Down

0 comments on commit 35557de

Please sign in to comment.