Skip to content

Commit

Permalink
Add transform label that indicates repeated application
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Oct 11, 2023
1 parent 0b7d757 commit d27db6f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions source/app/ui/qml/Transform/Transform.qml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ Item
visible: root.pinned
}

Label
{
text: ""
color: textColor
visible: root.repeating
}

RowLayout
{
id: expression
Expand Down Expand Up @@ -170,6 +177,7 @@ Item
property bool ready: false

property bool pinned: { return isFlagSet("pinned"); }
property bool repeating: { return isFlagSet("repeating"); }

function toggle()
{
Expand Down

0 comments on commit d27db6f

Please sign in to comment.