Skip to content

Commit

Permalink
remove dot on the stage layer stack window tab when the root layer is…
Browse files Browse the repository at this point in the history
…n't saved
  • Loading branch information
cpichard committed Jun 16, 2024
1 parent ef50a83 commit 169641e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ void Editor::Draw() {
if (_settings._showLayerStackEditor) {
TRACE_SCOPE(SdfLayerStackWindowTitle);
const std::string title(SdfLayerStackWindowTitle "###Layer stack");
ImGui::Begin(title.c_str(), &_settings._showLayerStackEditor, layerWindowFlag);
ImGui::Begin(title.c_str(), &_settings._showLayerStackEditor);
//DrawLayerSublayerStack(rootLayer);
DrawStageLayerEditor(GetCurrentStage());
ImGui::End();
Expand Down

0 comments on commit 169641e

Please sign in to comment.