Skip to content

Commit

Permalink
fix: bring glowClass to signature package
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Oct 9, 2020
1 parent 50fe05f commit a9b0942
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/signature-help-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ module.exports = class SignatureHelpManager {
* @type {Boolean}
*/
this.showSignatureHelpOnTyping = false

// glow on hover class
this.glowClass = atom.config.get("atom-ide-signature-help.glowOnHover") ? "signature-glow" : ""
}

/**
Expand Down Expand Up @@ -270,6 +273,7 @@ module.exports = class SignatureHelpManager {
containerClassName: "signature-marked-container",
contentClassName: "signature-marked",
},
className: this.glowClass
})
this.signatureHelpDisposables = this.mountSignatureHelp(editor, position, signatureHelpView)
}
Expand Down

0 comments on commit a9b0942

Please sign in to comment.