From aa9ca9cd0f46709b6041660225f56e31f6d90c2d Mon Sep 17 00:00:00 2001 From: Asriel Camora Date: Sat, 3 Aug 2024 00:18:00 -0700 Subject: [PATCH] Improve title bar buttons --- Craftimizer/Windows/MacroEditor.cs | 4 ++-- Craftimizer/Windows/MacroList.cs | 4 ++-- Craftimizer/Windows/RecipeNote.cs | 4 ++-- Craftimizer/Windows/SynthHelper.cs | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Craftimizer/Windows/MacroEditor.cs b/Craftimizer/Windows/MacroEditor.cs index 0428e98..01732aa 100644 --- a/Craftimizer/Windows/MacroEditor.cs +++ b/Craftimizer/Windows/MacroEditor.cs @@ -144,9 +144,9 @@ public sealed class MacroEditor : Window, IDisposable new() { Icon = FontAwesomeIcon.Cog, - IconOffset = new(2.5f, 1), + IconOffset = new(2, 1), Click = _ => Service.Plugin.OpenSettingsTab("Macro Editor"), - ShowTooltip = () => ImGuiUtils.Tooltip("Open Craftimizer Settings") + ShowTooltip = () => ImGuiUtils.Tooltip("Open Settings") } ]; diff --git a/Craftimizer/Windows/MacroList.cs b/Craftimizer/Windows/MacroList.cs index a1a1d08..6ac34b6 100644 --- a/Craftimizer/Windows/MacroList.cs +++ b/Craftimizer/Windows/MacroList.cs @@ -42,9 +42,9 @@ public sealed class MacroList : Window, IDisposable new() { Icon = FontAwesomeIcon.Cog, - IconOffset = new(2.5f, 1), + IconOffset = new(2, 1), Click = _ => Service.Plugin.OpenSettingsTab("General"), - ShowTooltip = () => ImGuiUtils.Tooltip("Open Craftimizer Settings") + ShowTooltip = () => ImGuiUtils.Tooltip("Open Settings") } ]; diff --git a/Craftimizer/Windows/RecipeNote.cs b/Craftimizer/Windows/RecipeNote.cs index f1922ef..961e409 100644 --- a/Craftimizer/Windows/RecipeNote.cs +++ b/Craftimizer/Windows/RecipeNote.cs @@ -100,9 +100,9 @@ public sealed unsafe class RecipeNote : Window, IDisposable new() { Icon = FontAwesomeIcon.Cog, - IconOffset = new(2.5f, 1), + IconOffset = new(2, 1), Click = _ => Service.Plugin.OpenSettingsTab("Crafting Log"), - ShowTooltip = () => ImGuiUtils.Tooltip("Open Craftimizer Settings") + ShowTooltip = () => ImGuiUtils.Tooltip("Open Settings") } ]; diff --git a/Craftimizer/Windows/SynthHelper.cs b/Craftimizer/Windows/SynthHelper.cs index 6d74765..d8eb29d 100644 --- a/Craftimizer/Windows/SynthHelper.cs +++ b/Craftimizer/Windows/SynthHelper.cs @@ -93,9 +93,9 @@ public sealed unsafe class SynthHelper : Window, IDisposable new() { Icon = FontAwesomeIcon.Cog, - IconOffset = new(2.5f, 1), + IconOffset = new(2, 1), Click = _ => Service.Plugin.OpenSettingsTab("Synthesis Helper"), - ShowTooltip = () => ImGuiUtils.Tooltip("Open Craftimizer Settings") + ShowTooltip = () => ImGuiUtils.Tooltip("Open Settings") } ];