diff --git a/Dalamud/Interface/Internal/Windows/StyleEditor/StyleEditorWindow.cs b/Dalamud/Interface/Internal/Windows/StyleEditor/StyleEditorWindow.cs index b54e3ebc4..d910ad2bb 100644 --- a/Dalamud/Interface/Internal/Windows/StyleEditor/StyleEditorWindow.cs +++ b/Dalamud/Interface/Internal/Windows/StyleEditor/StyleEditorWindow.cs @@ -140,7 +140,9 @@ namespace Dalamud.Interface.Internal.Windows.StyleEditor if (ImGuiComponents.IconButton(FontAwesomeIcon.FileExport)) { - var newStyle = config.SavedStyles[this.currentSel]; + var selectedStyle = config.SavedStyles[this.currentSel]; + var newStyle = StyleModel.Get(); + newStyle.Name = selectedStyle.Name; ImGui.SetClipboardText(newStyle.ToEncoded()); }