Skip to content

Commit

Permalink
Do not allow download button to be pressed multiple times
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Apr 11, 2024
1 parent 5670529 commit 32df2f6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/qml/project/components/MMProjectDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ Control {
iconSource: root.state === "OnServer" ? __style.downloadIcon : __style.moreVerticalIcon
bgndColor: root.projectIsOpened ? __style.polarColor : __style.lightGreenColor

visible: !(root.state === "OnServer" && root.projectIsInSync)

onClicked: {
if ( internal.hasMoreMenu ) {
moreMenuLoader.active = true
Expand Down

0 comments on commit 32df2f6

Please sign in to comment.