fix(ags): make scrollbar appear only when needed
This commit is contained in:
parent
2d5357a9cf
commit
06f7f95b98
2 changed files with 2 additions and 0 deletions
|
@ -112,6 +112,7 @@ const Applauncher = ({ window_name = 'applauncher' } = {}) => {
|
||||||
|
|
||||||
Scrollable({
|
Scrollable({
|
||||||
hscroll: 'never',
|
hscroll: 'never',
|
||||||
|
vscroll: 'automatic',
|
||||||
child: Box({
|
child: Box({
|
||||||
vertical: true,
|
vertical: true,
|
||||||
children: [list, placeholder],
|
children: [list, placeholder],
|
||||||
|
|
|
@ -115,6 +115,7 @@ export default () => Box({
|
||||||
Scrollable({
|
Scrollable({
|
||||||
className: 'notification-list-box',
|
className: 'notification-list-box',
|
||||||
hscroll: 'never',
|
hscroll: 'never',
|
||||||
|
vscroll: 'automatic',
|
||||||
child: Box({
|
child: Box({
|
||||||
className: 'notification-list',
|
className: 'notification-list',
|
||||||
vertical: true,
|
vertical: true,
|
||||||
|
|
Loading…
Reference in a new issue