Skip to content

Commit

Permalink
Merge branch 'bitcoin-core:main' into wsl-install-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
D33r-Gee committed Jan 2, 2024
2 parents 4523a0f + 533a9fc commit 96bfd55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qml/components/BlockClock.qml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ Item {
id: dial
anchors.horizontalCenter: root.horizontalCenter
scale: Theme.blockclocksize
width: Math.min((root.parentWidth * dial.scale), (root.parentHeight * dial.scale))
width: {Math.max(Math.min(200, Math.min(root.parentWidth - 30, root.parentHeight - 30)),
Math.min((root.parentWidth * dial.scale), (root.parentHeight * dial.scale)))}
height: dial.width
penWidth: dial.width / 50
timeRatioList: chainModel.timeRatioList
Expand Down

0 comments on commit 96bfd55

Please sign in to comment.