I want to add config tabs under a config category, it seems to be sorting my tabs by alphabetical order at the moment. Is it possible to define custom order of the config tabs when defining them?
This is how I initialized the config category and tabs
// This sets up the config panel (category)
public static final ConfigCategory CONFIG_CATEGORY = new ConfigCategory(
"category",
"category name",
0);
// This sets up the config page (tab)
public static final IConfigTab CONFIG_TAB = DefaultConfigTab.builder()
.category(CONFIG_CATEGORY)
.name("tab")
.i18n("tab")
.page(Panel.class)
.terms("tab")
.build();
I have tabs beign added to the same category from different module, it would be nice if it is possible to define the order (possibly through index?) of the tabs