Skip to content

Commit

Permalink
feat (mvSeparator): Ability to hide separators
Browse files Browse the repository at this point in the history
  • Loading branch information
v-ein authored and hoffstadt committed Aug 30, 2023
1 parent 19e699f commit e8bab91
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/mvBasicWidgets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6302,6 +6302,8 @@ DearPyGui::draw_filter_set(ImDrawList* drawlist, mvAppItem& item, mvFilterSetCon
void
DearPyGui::draw_separator(ImDrawList* drawlist, mvAppItem& item)
{
if (!item.config.show)
return;
ImGui::Separator();
}

Expand Down

0 comments on commit e8bab91

Please sign in to comment.