diff --git a/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigView.xaml b/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigView.xaml
index f19f2c753..c11e806d3 100644
--- a/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigView.xaml
+++ b/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigView.xaml
@@ -12,102 +12,131 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Properties
+
-
-
+ Margin="0 5" />
+ Margin="0 5" />
+ Margin="0 5" />
+ Margin="0 5 0 12" />
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Color calibration
+
+
+
+ Use the sliders below to adjust the colors of your device so that it matches your other devices.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
+ Color="{Binding CurrentColor, Converter={StaticResource SKColorToColorConverter}}"
+ VerticalAlignment="Center"/>
+
+
+
+
-
\ No newline at end of file
diff --git a/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigViewModel.cs b/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigViewModel.cs
index efc5be348..0b96110f8 100644
--- a/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigViewModel.cs
+++ b/src/Artemis.UI/Screens/SurfaceEditor/Dialogs/SurfaceDeviceConfigViewModel.cs
@@ -12,7 +12,6 @@ namespace Artemis.UI.Screens.SurfaceEditor.Dialogs
private readonly ICoreService _coreService;
private int _rotation;
private double _scale;
- private string _title;
private int _x;
private int _y;
public double _redScale;
@@ -26,7 +25,6 @@ namespace Artemis.UI.Screens.SurfaceEditor.Dialogs
_coreService = coreService;
Device = device;
- Title = $"{Device.RgbDevice.DeviceInfo.DeviceName} - Properties";
X = (int)Device.X;
Y = (int)Device.Y;
@@ -53,13 +51,6 @@ namespace Artemis.UI.Screens.SurfaceEditor.Dialogs
public ArtemisDevice Device { get; }
-
- public string Title
- {
- get => _title;
- set => SetAndNotify(ref _title, value);
- }
-
public int X
{
get => _x;