mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Add names, maybe fix combos.
This commit is contained in:
parent
79b4415a44
commit
efdece613a
5 changed files with 5 additions and 5 deletions
2
OtterGui
2
OtterGui
|
|
@ -1 +1 @@
|
||||||
Subproject commit 774f16781b350da5b14612ef4a1409082e6eda5b
|
Subproject commit d018a822212a68492771db1ee6a8921df36f677d
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"Author": "Adam",
|
"Author": "Ottermandias, Adam, Wintermute",
|
||||||
"Name": "Penumbra",
|
"Name": "Penumbra",
|
||||||
"Description": "Runtime mod loader and manager.",
|
"Description": "Runtime mod loader and manager.",
|
||||||
"InternalName": "Penumbra",
|
"InternalName": "Penumbra",
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ public partial class ConfigWindow
|
||||||
{
|
{
|
||||||
var (name, _) = Penumbra.CollectionManager.Individuals[ i ];
|
var (name, _) = Penumbra.CollectionManager.Individuals[ i ];
|
||||||
using var id = ImRaii.PushId( i );
|
using var id = ImRaii.PushId( i );
|
||||||
CollectionsWithEmpty.Draw( string.Empty, _window._inputTextWidth.X, i );
|
CollectionsWithEmpty.Draw( "##IndividualCombo", _window._inputTextWidth.X, i );
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
if( ImGuiUtil.DrawDisabledButton( FontAwesomeIcon.Trash.ToIconString(), _window._iconButtonSize, string.Empty,
|
if( ImGuiUtil.DrawDisabledButton( FontAwesomeIcon.Trash.ToIconString(), _window._iconButtonSize, string.Empty,
|
||||||
false, true ) )
|
false, true ) )
|
||||||
|
|
|
||||||
|
|
@ -225,7 +225,7 @@ public partial class ConfigWindow
|
||||||
if( collection != null )
|
if( collection != null )
|
||||||
{
|
{
|
||||||
using var id = ImRaii.PushId( ( int )type );
|
using var id = ImRaii.PushId( ( int )type );
|
||||||
DrawCollectionSelector( string.Empty, _window._inputTextWidth.X, type, true );
|
DrawCollectionSelector( "##SpecialCombo", _window._inputTextWidth.X, type, true );
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
if( ImGuiUtil.DrawDisabledButton( FontAwesomeIcon.Trash.ToIconString(), _window._iconButtonSize, string.Empty,
|
if( ImGuiUtil.DrawDisabledButton( FontAwesomeIcon.Trash.ToIconString(), _window._iconButtonSize, string.Empty,
|
||||||
false, true ) )
|
false, true ) )
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"Author": "Adam",
|
"Author": "Ottermandias, Adam, Wintermute",
|
||||||
"Name": "Penumbra",
|
"Name": "Penumbra",
|
||||||
"Description": "Runtime mod loader and manager.",
|
"Description": "Runtime mod loader and manager.",
|
||||||
"InternalName": "Penumbra",
|
"InternalName": "Penumbra",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue