renamed function

This commit is contained in:
sphrose
2021-05-11 08:20:44 +01:00
parent 9bea26511f
commit 7276253c42
2 changed files with 3 additions and 3 deletions
@@ -126,7 +126,7 @@ namespace AzToolsFramework
{
QStylePainter p(this);
if (IsSectionSeparator())
if (IsReorderableRow())
{
const QPen linePen(QColor(0x3B3E3F));
p.setPen(linePen);
@@ -1332,7 +1332,7 @@ namespace AzToolsFramework
return canBeTopLevel(this);
}
bool PropertyRowWidget::IsSectionSeparator() const
bool PropertyRowWidget::IsReorderableRow() const
{
return CanBeReordered();
}
@@ -83,7 +83,7 @@ namespace AzToolsFramework
PropertyRowWidget* GetParentRow() const { return m_parentRow; }
int GetLevel() const;
bool IsTopLevel() const;
bool IsSectionSeparator() const;
bool IsReorderableRow() const;
// Remove the default label and append the text to the name label.
bool GetAppendDefaultLabelToName();