Skip to content

Commit

Permalink
More updates to qtawesome icon names.
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfish committed Feb 28, 2025
1 parent ddea6bb commit 10ee83d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions angrmanagement/ui/widgets/qjobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PendingWidget(QIconWidget):
"""PendingWidget represents a pending job icon in the jobs view table."""

def __init__(self):
super().__init__("fa.clock-o", "grey")
super().__init__("mdi.clock-outline", "grey")


class RunningWidget(QIconWidget):
Expand All @@ -52,7 +52,7 @@ class FinishedWidget(QIconWidget):
"""FinishedWidget represents a finished job icon in the jobs view table."""

def __init__(self):
super().__init__("fa.check-circle", "green")
super().__init__("fa5.check-circle", "green")


class CancelledWidget(QIconWidget):
Expand Down

0 comments on commit 10ee83d

Please sign in to comment.