Skip to content

Commit

Permalink
Fixes the linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
AramAzhari-adsk committed Feb 15, 2024
1 parent 00346db commit 62a9a4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/usd/ui/layerEditor/layerEditorWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,7 @@ void LayerEditorWidget::updateButtons()
// Neither does any anonymous layer whose parent is system locked.
// This is because saving an anonymous layer will cause
// the parent layer to re-path the sub layer with a file name.
if (layer->isAnonymous() && layer->appearsSystemLocked())
{
if (layer->isAnonymous() && layer->appearsSystemLocked()) {
count--;
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/usd/ui/layerEditor/layerTreeItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class LayerTreeItem : public QStandardItem
bool appearsLocked() const;
// is the layer system locked?
bool isSystemLocked() const;
// check if this layer is system locked
// check if this layer is system locked
bool appearsSystemLocked() const;

// used by draw delegate: returns how deep in the hierarchy we are
Expand Down

0 comments on commit 62a9a4c

Please sign in to comment.