-
Notifications
You must be signed in to change notification settings - Fork 708
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
Update resources names #3886
Update resources names #3886
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5828,6 +5828,32 @@ | |
FocusVisualPrimaryBrush=#FF000000 | ||
Visibility=Visible | ||
RenderSize=22,27 | ||
[Windows.UI.Xaml.Controls.CalendarViewDayItem] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Curious why calendarView baselines have to be changed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know for sure but in this PR @kmahone also updated them. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think if you merge the latest from master you should pick up the required change where I updated the master. |
||
Padding=0,0,0,4 | ||
Foreground=#CC000000 | ||
BorderThickness=0,0,0,0 | ||
BorderBrush=[NULL] | ||
Background=[NULL] | ||
CornerRadius=0,0,0,0 | ||
MinWidth=40 | ||
MinHeight=40 | ||
Margin=1,1,1,1 | ||
FocusVisualSecondaryThickness=1,1,1,1 | ||
FocusVisualSecondaryBrush=#99FFFFFF | ||
FocusVisualPrimaryThickness=2,2,2,2 | ||
FocusVisualPrimaryBrush=#FF000000 | ||
Visibility=Visible | ||
RenderSize=55,51 | ||
[Windows.UI.Xaml.Controls.TextBlock] | ||
Padding=0,0,0,0 | ||
Foreground=#FF000000 | ||
Margin=0,0,0,0 | ||
FocusVisualSecondaryThickness=1,1,1,1 | ||
FocusVisualSecondaryBrush=#99FFFFFF | ||
FocusVisualPrimaryThickness=2,2,2,2 | ||
FocusVisualPrimaryBrush=#FF000000 | ||
Visibility=Visible | ||
RenderSize=22,27 | ||
[Windows.UI.Xaml.Controls.ScrollViewer] | ||
Padding=0,0,0,0 | ||
Foreground=#CC000000 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can't just rename resources like this, because there might be an app which references the resource. We should put a resource with the old name and value in the dictionary as well (or a separate dictionary for deprecated resources) and put a comment saying that it is no longer used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think it is necessary since this change only resides in token-experiment branch (it's not in master) and was introduced in this commit. Unless a developer cloned the token-experiment branch after Dec 1 and created an app what is very unlikely :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are new resources so we should be okay to rename them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sweet