diff --git a/XIVComboVX/Config/ConfigWindow.cs b/XIVComboVX/Config/ConfigWindow.cs index d8915b78..b82edee2 100644 --- a/XIVComboVX/Config/ConfigWindow.cs +++ b/XIVComboVX/Config/ConfigWindow.cs @@ -37,19 +37,29 @@ public class ConfigWindow: Window { public ConfigWindow() : base($"Custom Combo Setup - {Service.Plugin.ShortPluginSignature}, {Service.Plugin.PluginBuildType}###{Service.Plugin.Name} Custom Combo Setup", ImGuiWindowFlags.MenuBar) { this.RespectCloseHotkey = true; - TitleBarButton kofi = new() { - Priority = int.MinValue, - Icon = FontAwesomeIcon.Heart, - IconOffset = new(2, 1), - Click = _ => Process.Start(new ProcessStartInfo("https://ko-fi.com/V7V7IK9UU") { UseShellExecute = true }), - ShowTooltip = () => { - ImGui.BeginTooltip(); - ImGui.TextUnformatted("Support me on ko-fi"); - ImGui.EndTooltip(); - }, - }; this.TitleBarButtons = new() { - kofi, + new() { + Priority = 0, + Icon = FontAwesomeIcon.Heart, + IconOffset = new(2, 1), + Click = _ => Process.Start(new ProcessStartInfo("https://ko-fi.com/V7V7IK9UU") { UseShellExecute = true }), + ShowTooltip = () => { + ImGui.BeginTooltip(); + ImGui.TextUnformatted("Support me on ko-fi"); + ImGui.EndTooltip(); + }, + }, + new() { + Priority = 1, + Icon = FontAwesomeIcon.Code, + IconOffset = new(1, 1), + Click = _ => Process.Start(new ProcessStartInfo("https://github.com/PrincessRTFM/XIVComboPlugin") { UseShellExecute = true }), + ShowTooltip = () => { + ImGui.BeginTooltip(); + ImGui.TextUnformatted("Browse the github repo"); + ImGui.EndTooltip(); + }, + }, }; this.AllowClickthrough = false; this.AllowPinning = true; diff --git a/XIVComboVX/XIVComboVX.csproj b/XIVComboVX/XIVComboVX.csproj index e2cd8779..357a804e 100644 --- a/XIVComboVX/XIVComboVX.csproj +++ b/XIVComboVX/XIVComboVX.csproj @@ -3,7 +3,7 @@ XIVComboVX attick, daemitus, VariableVixen - 9.15.0 + 9.16.0 This plugin condenses various abilities onto single buttons. https://github.com/PrincessRTFM/XIVComboPlugin Copyleft attick 2020 baybeeee