-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic Maptext #2108
base: master
Are you sure you want to change the base?
Basic Maptext #2108
Conversation
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
@@ -323,11 +325,9 @@ | |||
_animatedAppearance.IconState = endAppearance.IconState; | |||
if (endAppearance.Invisibility != _appearance.Invisibility) | |||
_animatedAppearance.Invisibility = endAppearance.Invisibility; | |||
if (endAppearance.Maptext != _appearance.Maptext) |
Check warning
Code scanning / InspectCode
Redundant condition check before assignments Warning
@@ -227,6 +237,9 @@ | |||
hashCode.Add(RenderTarget); | |||
hashCode.Add(BlendMode); | |||
hashCode.Add(AppearanceFlags); | |||
hashCode.Add(Maptext); |
Check warning
Code scanning / InspectCode
Non-readonly type member referenced in 'GetHashCode()' Warning
@@ -227,6 +237,9 @@ | |||
hashCode.Add(RenderTarget); | |||
hashCode.Add(BlendMode); | |||
hashCode.Add(AppearanceFlags); | |||
hashCode.Add(Maptext); | |||
hashCode.Add(MaptextOffset); |
Check warning
Code scanning / InspectCode
Non-readonly type member referenced in 'GetHashCode()' Warning
@@ -227,6 +237,9 @@ | |||
hashCode.Add(RenderTarget); | |||
hashCode.Add(BlendMode); | |||
hashCode.Add(AppearanceFlags); | |||
hashCode.Add(Maptext); | |||
hashCode.Add(MaptextOffset); | |||
hashCode.Add(MaptextSize); |
Check warning
Code scanning / InspectCode
Non-readonly type member referenced in 'GetHashCode()' Warning
} | ||
|
||
|
||
if (MaptextSize != MutableAppearance.Default.MaptextSize) { |
Check warning
Code scanning / InspectCode
Incorrect blank lines: Blank lines are redundant elsewhere Warning
@@ -252,6 +261,9 @@ | |||
hashCode.Add(RenderTarget); | |||
hashCode.Add(BlendMode); | |||
hashCode.Add(AppearanceFlags); | |||
hashCode.Add(Maptext); |
Check warning
Code scanning / InspectCode
Non-readonly type member referenced in 'GetHashCode()' Warning
@@ -252,6 +261,9 @@ | |||
hashCode.Add(RenderTarget); | |||
hashCode.Add(BlendMode); | |||
hashCode.Add(AppearanceFlags); | |||
hashCode.Add(Maptext); | |||
hashCode.Add(MaptextOffset); |
Check warning
Code scanning / InspectCode
Non-readonly type member referenced in 'GetHashCode()' Warning
@@ -252,6 +261,9 @@ | |||
hashCode.Add(RenderTarget); | |||
hashCode.Add(BlendMode); | |||
hashCode.Add(AppearanceFlags); | |||
hashCode.Add(Maptext); | |||
hashCode.Add(MaptextOffset); | |||
hashCode.Add(MaptextSize); |
Check warning
Code scanning / InspectCode
Non-readonly type member referenced in 'GetHashCode()' Warning
Rudimentary implementation. No tag processing but it shouldn't be too hard to add (just copying richtext formatting stuff)
Maptext inherits filters and transforms from parent atom.
Resolves #176