mirror of
https://github.com/ZuneDev/ZuneModdingHelper.git
synced 2026-07-27 13:12:21 -07:00
Update AbsUI titles and subtitles
This commit is contained in:
@@ -25,7 +25,8 @@ namespace ZuneModCore.Mods
|
|||||||
{
|
{
|
||||||
new AbstractTextBox("fileBox", Environment.GetFolderPath(Environment.SpecialFolder.MyPictures)),
|
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;
|
return optionsUi;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,6 +83,7 @@ namespace ZuneModCore.Mods
|
|||||||
return $"Failed to locate image resources in Zune software.";
|
return $"Failed to locate image resources in Zune software.";
|
||||||
|
|
||||||
// Locate the image resource
|
// Locate the image resource
|
||||||
|
// TODO: Allow users to specify which background they want to replace
|
||||||
List<Resource> RCDATA = vi.Resources[resId];
|
List<Resource> RCDATA = vi.Resources[resId];
|
||||||
int idx = RCDATA.FindIndex(r => r.Name.Name == "FRAMEBACKGROUND06.PNG");
|
int idx = RCDATA.FindIndex(r => r.Name.Name == "FRAMEBACKGROUND06.PNG");
|
||||||
if (idx < 0)
|
if (idx < 0)
|
||||||
|
|||||||
@@ -36,7 +36,8 @@ namespace ZuneModCore.Mods
|
|||||||
new AbstractTextBox("folderBox", Environment.GetFolderPath(Environment.SpecialFolder.MyMusic)),
|
new AbstractTextBox("folderBox", Environment.GetFolderPath(Environment.SpecialFolder.MyMusic)),
|
||||||
new AbstractBoolean("recursiveBox", "Search recursively")
|
new AbstractBoolean("recursiveBox", "Search recursively")
|
||||||
};
|
};
|
||||||
optionsUi.Title = "Select music folder:";
|
optionsUi.Title = "select music";
|
||||||
|
optionsUi.Subtitle = "CHOOSE YOUR MUSIC FOLDER.";
|
||||||
return optionsUi;
|
return optionsUi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user