Update AbsUI titles and subtitles

This commit is contained in:
Yoshi Askharoun
2024-05-17 23:42:20 -05:00
parent 4ebd26dfd8
commit b6498a458d
2 changed files with 5 additions and 2 deletions
+3 -1
View File
@@ -25,7 +25,8 @@ namespace ZuneModCore.Mods
{
new AbstractTextBox("fileBox", Environment.GetFolderPath(Environment.SpecialFolder.MyPictures)),
};
optionsUi.Title = "Select background image:";
optionsUi.Title = "select background";
optionsUi.Subtitle = "CHOOSE A BACKGROUND IMAGE OF YOUR CHOICE.";
return optionsUi;
}
@@ -82,6 +83,7 @@ namespace ZuneModCore.Mods
return $"Failed to locate image resources in Zune software.";
// Locate the image resource
// TODO: Allow users to specify which background they want to replace
List<Resource> RCDATA = vi.Resources[resId];
int idx = RCDATA.FindIndex(r => r.Name.Name == "FRAMEBACKGROUND06.PNG");
if (idx < 0)
+2 -1
View File
@@ -36,7 +36,8 @@ namespace ZuneModCore.Mods
new AbstractTextBox("folderBox", Environment.GetFolderPath(Environment.SpecialFolder.MyMusic)),
new AbstractBoolean("recursiveBox", "Search recursively")
};
optionsUi.Title = "Select music folder:";
optionsUi.Title = "select music";
optionsUi.Subtitle = "CHOOSE YOUR MUSIC FOLDER.";
return optionsUi;
}