electron-notify icon indicating copy to clipboard operation
electron-notify copied to clipboard

No notification shows in production build

Open m-o-leary opened this issue 6 years ago • 0 comments

Notifications how in dev environement but not in production

"electron-notify": "^0.1.0", "electron": "^4.0.0",

config:

eNotify.setConfig({
        appIcon: path.join(__dirname, wlmIcon),
        displayTime: 10000,
        borderRadius: 0,
        defaultStyleContainer: {
          backgroundColor: Colors.primary2,
          overflow: "hidden",
          padding: 8,
          border: "none",
          fontFamily: "Courier",
          fontSize: 12,
          position: "relative",
          lineHeight: "15px",
          color: Colors.textColor2
        },
        defaultStyleClose: {
          display: "none"
        },
        defaultStyleText: {
          margin: 0,
          overflow: "hidden",
          cursor: "default",
          color: Colors.textColor2
        }
      });

m-o-leary avatar Jan 29 '19 10:01 m-o-leary