Skip to content
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: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased
### [Changed]
- [#49] Make the background of modules tinted.

## 0.1.7
### [Added]
- [#46] GHC 9.8, 9.10 support
Expand Down
1 change: 1 addition & 0 deletions src/Calligraphy/Phases/Render/GraphViz.hs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ renderGraphViz GraphVizConfig {..} (RenderGraph roots calls types) = do
printModule (RenderModule lbl modId trees) =
brack ("subgraph cluster_module_" <> modId <> " {") "}" $ do
strLn $ "label=" <> show lbl <> ";"
strLn "bgcolor=\"whitesmoke\""
forM_ trees printTree

printNode :: Prints RenderNode
Expand Down
Loading