diff --git a/Dalamud/Interface/Internal/Windows/DataWindow.cs b/Dalamud/Interface/Internal/Windows/DataWindow.cs
index 22a4ed7ca..d61a67311 100644
--- a/Dalamud/Interface/Internal/Windows/DataWindow.cs
+++ b/Dalamud/Interface/Internal/Windows/DataWindow.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Numerics;
+using Dalamud.Configuration.Internal;
using Dalamud.Data;
using Dalamud.Game;
using Dalamud.Game.ClientState;
@@ -135,6 +136,7 @@ namespace Dalamud.Interface.Internal.Windows
Tex,
KeyState,
Gamepad,
+ Configuration,
}
///
@@ -298,6 +300,10 @@ namespace Dalamud.Interface.Internal.Windows
case DataKind.Gamepad:
this.DrawGamepad();
break;
+
+ case DataKind.Configuration:
+ this.DrawConfiguration();
+ break;
}
}
else
@@ -1244,6 +1250,12 @@ namespace Dalamud.Interface.Internal.Windows
$"RightStickDown {gamepadState.RightStickDown:0.00} ");
}
+ private void DrawConfiguration()
+ {
+ var config = Service.Get();
+ Util.ShowObject(config);
+ }
+
private void Load()
{
var dataManager = Service.Get();