Task Manager edit bottom indicator thing

image
I got that little rectangle underneath to only show on the active window, which I feel should be by default.

Edit:
~/.local/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml

Find:
property string basePrefix: “normal”

Change it to:
property string basePrefix: “”

State {
name: “minimized”
when: model.IsMinimized

        PropertyChanges {
            target: frame
            basePrefix: ""
        }
    },

Also this