diff options
Diffstat (limited to 'Assistant')
-rw-r--r-- | Assistant/Alert.hs | 1 | ||||
-rw-r--r-- | Assistant/Types/Alert.hs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Assistant/Alert.hs b/Assistant/Alert.hs index d4770f646..944da07d9 100644 --- a/Assistant/Alert.hs +++ b/Assistant/Alert.hs @@ -94,6 +94,7 @@ syncAlert rs = baseActivityAlert , alertHeader = Just $ tenseWords [Tensed "Syncing" "Synced", "with", showRemotes rs] , alertPriority = Low + , alertIcon = Just SyncIcon } syncResultAlert :: [Remote] -> [Remote] -> Alert diff --git a/Assistant/Types/Alert.hs b/Assistant/Types/Alert.hs index 34bbc1b08..1ca886242 100644 --- a/Assistant/Types/Alert.hs +++ b/Assistant/Types/Alert.hs @@ -50,7 +50,7 @@ data Alert = Alert , alertButton :: Maybe AlertButton } -data AlertIcon = ActivityIcon | SuccessIcon | ErrorIcon | InfoIcon | TheCloud +data AlertIcon = ActivityIcon | SyncIcon | SuccessIcon | ErrorIcon | InfoIcon | TheCloud type AlertMap = M.Map AlertId Alert |