mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-03 12:47:13 -06:00
Merge pull request #317 from VishwasShashidhar/ELECTRON-293
ELECTRON-293: remove notification limit of 5 and match it with screen size
This commit is contained in:
commit
ff803e3a24
@ -283,7 +283,6 @@ function setupConfig() {
|
||||
|
||||
// Maximum amount of Notifications we can show:
|
||||
config.maxVisibleNotifications = Math.floor(display.workAreaSize.height / config.totalHeight);
|
||||
config.maxVisibleNotifications = config.maxVisibleNotifications > 5 ? 5 : config.maxVisibleNotifications;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user