mirror of
https://github.com/Ed94/Cog.git
synced 2026-07-31 11:50:06 +00:00
CogAbility: Improve Effects Ability and Attribute window
CogAbility: - Add sorting on Effects and Ability - Add search on Effects and Ability - Colors are now per user config - Add blocking info in ability window and change its color when blocked - Add separate windows for Effects CogEnine: Change the command binding key widget
This commit is contained in:
@@ -265,19 +265,19 @@ void FCogEngineWindow_Inspector::RenderMenu()
|
||||
|
||||
ImGui::Separator();
|
||||
|
||||
ImGui::Checkbox("Sort by name", &Config->bSortByName);
|
||||
ImGui::Checkbox("Show background", &Config->bShowRowBackground);
|
||||
ImGui::Checkbox("Show borders", &Config->bShowBorders);
|
||||
ImGui::Checkbox("Sort by Name", &Config->bSortByName);
|
||||
ImGui::Checkbox("Show Background", &Config->bShowRowBackground);
|
||||
ImGui::Checkbox("Show Sorders", &Config->bShowBorders);
|
||||
#if WITH_EDITORONLY_DATA
|
||||
ImGui::Checkbox("Show display name", &Config->bShowDisplayName);
|
||||
ImGui::Checkbox("Show categories", &Config->bShowCategories);
|
||||
ImGui::Checkbox("Show Display Name", &Config->bShowDisplayName);
|
||||
ImGui::Checkbox("Show Categories", &Config->bShowCategories);
|
||||
|
||||
ImGui::Separator();
|
||||
if (ImGui::MenuItem("Collapse all categories", nullptr, false, Config->bShowCategories))
|
||||
if (ImGui::MenuItem("Collapse All Categories", nullptr, false, Config->bShowCategories))
|
||||
{
|
||||
bCollapseAllCategories = true;
|
||||
}
|
||||
if (ImGui::MenuItem("Expand all categories", nullptr, false, Config->bShowCategories))
|
||||
if (ImGui::MenuItem("Expand All Categories", nullptr, false, Config->bShowCategories))
|
||||
{
|
||||
bExpandAllCategories = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user