1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Remove mToggleCommentAlt setting

This commit is contained in:
unknown 2021-12-18 20:45:02 +02:00
parent 25e0959018
commit f1652dd1aa

View file

@ -625,7 +625,6 @@ namespace IDE
public FileRecoveryKind mEnableFileRecovery = .Yes;
public bool mFormatOnSave = false;
public bool mSyncWithWorkspacePanel = false;
public bool mToggleCommentAlt = false;
public void Serialize(StructuredData sd)
{
@ -651,7 +650,6 @@ namespace IDE
sd.Add("EnableFileRecovery", mEnableFileRecovery);
sd.Add("FormatOnSave", mFormatOnSave);
sd.Add("SyncWithWorkspacePanel", mSyncWithWorkspacePanel);
sd.Add("ToggleCommentAlt", mToggleCommentAlt);
}
public void Deserialize(StructuredData sd)
@ -681,7 +679,6 @@ namespace IDE
sd.GetEnum<FileRecoveryKind>("EnableFileRecovery", ref mEnableFileRecovery);
sd.Get("FormatOnSave", ref mFormatOnSave);
sd.Get("SyncWithWorkspacePanel", ref mSyncWithWorkspacePanel);
sd.Get("ToggleCommentAlt", ref mToggleCommentAlt);
}
public void SetDefaults()