mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
ELECTRON-293: remove notification limit of 5 and match it with screen size
This commit is contained in:
parent
2c673248a6
commit
83d62350e1
@ -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