From 5c5b15810baec6b97f1bf3989b8ae6201f8a70b4 Mon Sep 17 00:00:00 2001
From: MidoriKami <9083275+MidoriKami@users.noreply.github.com>
Date: Thu, 12 Jan 2023 14:55:53 -0800
Subject: [PATCH] Fix IconButton Caravan Issue
---
Dalamud/Interface/Components/ImGuiComponents.IconButton.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs b/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs
index 7ef3f56e5..cee5c5390 100644
--- a/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs
+++ b/Dalamud/Interface/Components/ImGuiComponents.IconButton.cs
@@ -55,7 +55,7 @@ public static partial class ImGuiComponents
/// The color of the button when hovered.
/// Indicator if button is clicked.
public static bool IconButton(int id, FontAwesomeIcon icon, Vector4? defaultColor = null, Vector4? activeColor = null, Vector4? hoveredColor = null)
- => IconButton($"{icon.ToIconString()}{id}", defaultColor, activeColor, hoveredColor);
+ => IconButton($"{icon.ToIconString()}##{id}", defaultColor, activeColor, hoveredColor);
///
/// IconButton component to use an icon as a button with color options.