Nav: Fixed Selectable/MenuItem Nav Highlight from using rounding when outer highlight stays square. (#787)

This commit is contained in:
omar
2018-02-01 22:25:25 +01:00
parent c7b7b181b5
commit 950f260a32
2 changed files with 6 additions and 4 deletions

View File

@ -282,7 +282,8 @@ enum ImGuiNavHighlightFlags_
{
ImGuiNavHighlightFlags_TypeDefault = 1 << 0,
ImGuiNavHighlightFlags_TypeThin = 1 << 1,
ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2
ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2,
ImGuiNavHighlightFlags_NoRounding = 1 << 3
};
enum ImGuiNavDirSourceFlags_