Skip to content
This repository was archived by the owner on Apr 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ int main(int argc, char** argv)
{
using namespace flow::ui;

app.AddDockspace("PropertySpace", DefaultDockspace, 0.25f, DockspaceSplitDirection::Left);
app.AddDockspace("MiscSpace", DefaultDockspace, 0.25f, DockspaceSplitDirection::Down);

auto property_window = std::make_shared<PropertyWindow>(app.GetEnv());
app.OnActiveGraphChanged.Bind(flow::IndexableName{property_window->GetName()},
[=](const auto& g) { property_window->SetCurrentGraph(g); });
app.AddWindow(property_window, "PropertySpace");

app.AddWindow(property_window, PropertyDockspace);

app.Run();
}
Expand Down
2 changes: 1 addition & 1 deletion third_party/cxxopts
Submodule cxxopts updated 1 files
+5 −3 test/options.cpp
Loading