Skip to content

Commit

Permalink
Temporarily make the checkbox always visible
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Jul 29, 2024
1 parent 66fa75c commit be05f37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Core/GameInstanceManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public void CloneInstance(GameInstance existingInstance,

log.Debug("Copying directory.");
Utilities.CopyDirectory(existingInstance.GameDir(), newPath,
shareStockFolders && SymbolicLink.CanCreate
shareStockFolders // && SymbolicLink.CanCreate
? existingInstance.game.StockFolders
: Array.Empty<string>(),
existingInstance.game.LeaveEmptyInClones);
Expand Down
2 changes: 1 addition & 1 deletion GUI/Dialogs/CloneGameInstanceDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public CloneGameInstanceDialog(GameInstanceManager manager, IUser user, string s
InitializeComponent();

ToolTip.SetToolTip(checkBoxShareStock, Properties.Resources.CloneGameInstanceToolTipShareStock);
checkBoxShareStock.Visible = SymbolicLink.CanCreate;
// checkBoxShareStock.Visible = SymbolicLink.CanCreate;

// Populate the instances combobox with names of known instances
comboBoxKnownInstance.DataSource = new string[] { "" }
Expand Down

0 comments on commit be05f37

Please sign in to comment.