mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 12:23:39 +01:00
* wip * hacky fix for overlapping event text in profiler * move IsResumeGameAfterPluginLoad logic to PluginManager * fix some warnings * handle exceptions properly * remove ability to cancel, rename button to "hide" instead * undo Dalamud.Service refactor for now * warnings * add explainer, show which plugins are still loading * add some text if loading takes more than 3 minutes * undo wrong CS merge
18 lines
604 B
C#
18 lines
604 B
C#
namespace Dalamud.Interface;
|
|
|
|
/// <summary>
|
|
/// Set search terms associated with a font awesome icon.
|
|
/// </summary>
|
|
public class FontAwesomeSearchTermsAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FontAwesomeSearchTermsAttribute"/> class.
|
|
/// </summary>
|
|
/// <param name="searchTerms">search terms for enum member.</param>
|
|
public FontAwesomeSearchTermsAttribute(string[] searchTerms) => this.SearchTerms = searchTerms;
|
|
|
|
/// <summary>
|
|
/// Gets or sets search terms.
|
|
/// </summary>
|
|
public string[] SearchTerms { get; set; }
|
|
}
|