Skip to content

Commit abfa5e4

Browse files
committed
make every notifications dismissable
1 parent 9f55eae commit abfa5e4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/runtime/refactor.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,14 @@ class Refactor {
8080
}
8181
if (result.warning) {
8282
atom.notifications.addWarning('Julia Client: Rename Refactor', {
83-
description: result.warning
83+
description: result.warning,
84+
dismissable: true
8485
})
8586
}
8687
if (result.error) {
8788
atom.notifications.addError('Julia Client: Rename Refactor', {
88-
description: result.error
89+
description: result.error,
90+
dismissable: true
8991
})
9092
}
9193
})

0 commit comments

Comments
 (0)