summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp/Background.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ElmSharp/ElmSharp/Background.cs')
-rw-r--r--[-rwxr-xr-x]ElmSharp/ElmSharp/Background.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ElmSharp/ElmSharp/Background.cs b/ElmSharp/ElmSharp/Background.cs
index 5d6b023..bb25d3b 100755..100644
--- a/ElmSharp/ElmSharp/Background.cs
+++ b/ElmSharp/ElmSharp/Background.cs
@@ -43,7 +43,7 @@ namespace ElmSharp
set
{
var swallowContent = GetPartContent("elm.swallow.rectangle");
- if(swallowContent == IntPtr.Zero)
+ if (swallowContent == IntPtr.Zero)
{
Interop.Elementary.elm_bg_color_set(RealHandle, value.R, value.G, value.B);
swallowContent = GetPartContent("elm.swallow.rectangle");
@@ -68,11 +68,11 @@ namespace ElmSharp
{
get
{
- return (BackgroundOptions) Interop.Elementary.elm_bg_option_get(RealHandle);
+ return (BackgroundOptions)Interop.Elementary.elm_bg_option_get(RealHandle);
}
set
{
- Interop.Elementary.elm_bg_option_set(RealHandle, (Interop.Elementary.BackgroundOptions) value);
+ Interop.Elementary.elm_bg_option_set(RealHandle, (Interop.Elementary.BackgroundOptions)value);
}
}