Skip to content

Commit

Permalink
fixes #1726
Browse files Browse the repository at this point in the history
fixes #1734
  • Loading branch information
ErikEJ committed Mar 11, 2023
1 parent e0db497 commit ef9521e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -752,7 +752,7 @@ private string AddResultToFinalText(string finalText, ReverseEngineerResult revE
warningText.AppendLine(warningItem);
}

finalText = warningText.ToString() + Environment.NewLine + finalText;
finalText = finalText + Environment.NewLine + warningText.ToString();
}

return finalText;
Expand Down
4 changes: 2 additions & 2 deletions src/GUI/Shared/Options/AdvancedOptions.cs
Expand Up @@ -49,8 +49,8 @@ public class AdvancedOptions : BaseOptionModel<AdvancedOptions>
public bool PreferAsyncCalls { get; set; } = true;

[Category("Reverse Engineering")]
[DisplayName(@"Set mappings based on data types in use")]
[Description("Set mappings for special types based on usage")]
[DisplayName(@"Set mappings based on all data types in use")]
[Description("Enable mappings for types like date, time, spatial based on usage")]
[DefaultValue(true)]
public bool MapUsedTypes { get; set; } = true;

Expand Down

0 comments on commit ef9521e

Please sign in to comment.