Skip to content

Commit

Permalink
Increasing the size of the cultural centers
Browse files Browse the repository at this point in the history
  • Loading branch information
schizoidnightmares authored Aug 16, 2022
1 parent 5c5c83a commit 45afa52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/dynamic/editors/cultures-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ const cultureHighlightOn = debounce(event => {
.select("#cultureCenter" + cultureId)
.raise()
.transition(animate)
.attr("r", 2)
.attr("r", 3)
.attr("stroke", "#d0240f");
}, 200);

Expand All @@ -326,7 +326,7 @@ function cultureHighlightOff(event) {
debug
.select("#cultureCenter" + cultureId)
.transition()
.attr("r", 1)
.attr("r", 2)
.attr("stroke", null);
}

Expand Down Expand Up @@ -557,7 +557,7 @@ function drawCultureCenters() {
const cultureCenters = debug
.append("g")
.attr("id", "cultureCenters")
.attr("stroke-width", 0.5)
.attr("stroke-width", 0.8)
.attr("stroke", "#444444")
.style("cursor", "move");

Expand All @@ -569,7 +569,7 @@ function drawCultureCenters() {
.append("circle")
.attr("id", d => "cultureCenter" + d.i)
.attr("data-id", d => d.i)
.attr("r", 1)
.attr("r", 2)
.attr("fill", d => d.color)
.attr("cx", d => pack.cells.p[d.center][0])
.attr("cy", d => pack.cells.p[d.center][1])
Expand Down

0 comments on commit 45afa52

Please sign in to comment.