mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 05:04:15 +01:00
Rename tab buttons.
This commit is contained in:
parent
1f46b4951e
commit
b104bc3249
1 changed files with 4 additions and 3 deletions
|
|
@ -34,7 +34,7 @@ public partial class ConfigWindow
|
||||||
private static readonly Utf8String DescriptionTabHeader = Utf8String.FromStringUnsafe( "Description", false );
|
private static readonly Utf8String DescriptionTabHeader = Utf8String.FromStringUnsafe( "Description", false );
|
||||||
private static readonly Utf8String SettingsTabHeader = Utf8String.FromStringUnsafe( "Settings", false );
|
private static readonly Utf8String SettingsTabHeader = Utf8String.FromStringUnsafe( "Settings", false );
|
||||||
private static readonly Utf8String ChangedItemsTabHeader = Utf8String.FromStringUnsafe( "Changed Items", false );
|
private static readonly Utf8String ChangedItemsTabHeader = Utf8String.FromStringUnsafe( "Changed Items", false );
|
||||||
private static readonly Utf8String EditModTabHeader = Utf8String.FromStringUnsafe( "Edit Mod Meta", false );
|
private static readonly Utf8String EditModTabHeader = Utf8String.FromStringUnsafe( "Edit Mod", false );
|
||||||
|
|
||||||
private void DrawTabBar()
|
private void DrawTabBar()
|
||||||
{
|
{
|
||||||
|
|
@ -56,7 +56,7 @@ public partial class ConfigWindow
|
||||||
DrawChangedItemsTab();
|
DrawChangedItemsTab();
|
||||||
DrawConflictsTab();
|
DrawConflictsTab();
|
||||||
DrawEditModTab();
|
DrawEditModTab();
|
||||||
if( ImGui.TabItemButton( "Open Advanced Edit Window", ImGuiTabItemFlags.Trailing | ImGuiTabItemFlags.NoTooltip ) )
|
if( ImGui.TabItemButton( "Advanced Editing", ImGuiTabItemFlags.Trailing | ImGuiTabItemFlags.NoTooltip ) )
|
||||||
{
|
{
|
||||||
_window.ModEditPopup.ChangeMod( _mod );
|
_window.ModEditPopup.ChangeMod( _mod );
|
||||||
_window.ModEditPopup.ChangeOption( -1, 0 );
|
_window.ModEditPopup.ChangeOption( -1, 0 );
|
||||||
|
|
@ -69,7 +69,8 @@ public partial class ConfigWindow
|
||||||
+ "\t\t- file swaps\n"
|
+ "\t\t- file swaps\n"
|
||||||
+ "\t\t- metadata manipulations\n"
|
+ "\t\t- metadata manipulations\n"
|
||||||
+ "\t\t- model materials\n"
|
+ "\t\t- model materials\n"
|
||||||
+ "\t\t- duplicates" );
|
+ "\t\t- duplicates\n"
|
||||||
|
+ "\t\t- textures" );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Just a simple text box with the wrapped description, if it exists.
|
// Just a simple text box with the wrapped description, if it exists.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue