mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix tooltip when no advanced editing.
This commit is contained in:
parent
1c60a61f79
commit
d1f0f4490c
1 changed files with 16 additions and 13 deletions
|
|
@ -56,7 +56,9 @@ public partial class ConfigWindow
|
|||
DrawChangedItemsTab();
|
||||
DrawConflictsTab();
|
||||
DrawEditModTab();
|
||||
if( Penumbra.Config.ShowAdvanced && ImGui.TabItemButton( "Advanced Editing", ImGuiTabItemFlags.Trailing | ImGuiTabItemFlags.NoTooltip ) )
|
||||
if( Penumbra.Config.ShowAdvanced )
|
||||
{
|
||||
if( ImGui.TabItemButton( "Advanced Editing", ImGuiTabItemFlags.Trailing | ImGuiTabItemFlags.NoTooltip ) )
|
||||
{
|
||||
_window.ModEditPopup.ChangeMod( _mod );
|
||||
_window.ModEditPopup.ChangeOption( -1, 0 );
|
||||
|
|
@ -72,6 +74,7 @@ public partial class ConfigWindow
|
|||
+ "\t\t- duplicates\n"
|
||||
+ "\t\t- textures" );
|
||||
}
|
||||
}
|
||||
|
||||
// Just a simple text box with the wrapped description, if it exists.
|
||||
private void DrawDescriptionTab()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue