Skip to content
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

Bump Tizen.UIExtensions.ElmSharp from 0.8.1 to 0.9.0 #9207

Merged
merged 1 commit into from
Aug 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<MicrosoftDotNetXHarnessTestRunnersCommonVersion>1.0.0-prerelease.22276.1</MicrosoftDotNetXHarnessTestRunnersCommonVersion>
<MicrosoftDotNetXHarnessTestRunnersXunitVersion>1.0.0-prerelease.22276.1</MicrosoftDotNetXHarnessTestRunnersXunitVersion>
<MicrosoftDotNetXHarnessCLIVersion>1.0.0-prerelease.22276.1</MicrosoftDotNetXHarnessCLIVersion>
<TizenUIExtensionsVersion>0.8.1</TizenUIExtensionsVersion>
<TizenUIExtensionsVersion>0.9.0</TizenUIExtensionsVersion>
<SvgSkiaPackageVersion>0.5.13</SvgSkiaPackageVersion>
<FizzlerPackageVersion>1.2.0</FizzlerPackageVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/src/Core/Handlers/Shell/ShellHandler.Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public override void SetVirtualView(IView view)

protected override ShellView CreatePlatformView()
{
if (DeviceInfo.GetDeviceType() == DeviceType.TV)
if (DeviceInfo.DeviceType == DeviceType.TV)
{
return new TVShellView(PlatformParent);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/Page/PageHandler.Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static void MapTitle(IPageHandler handler, IContentView page) { }
protected override ContentCanvas CreatePlatformView()
{
var view = base.CreatePlatformView();
view.BackgroundColor = (DeviceInfo.GetDeviceType() == DeviceType.TV) ? EColor.Transparent : EColor.White;
view.BackgroundColor = (DeviceInfo.DeviceType == DeviceType.TV) ? EColor.Transparent : EColor.White;

return view;
}
Expand Down