feat(ags): update exclusivity

This commit is contained in:
matt1432 2023-11-15 15:11:55 -05:00
parent 4eb9d259cf
commit d296dbf4bd
4 changed files with 2 additions and 5 deletions

View file

@ -32,7 +32,7 @@ export const Bar = () => Window({
name: 'bar', name: 'bar',
layer: 'overlay', layer: 'overlay',
anchor: ['top', 'left', 'right'], anchor: ['top', 'left', 'right'],
exclusive: true, exclusivity: 'exclusive',
child: Revealer({ child: Revealer({
child: CenterBox({ child: CenterBox({
className: 'bar', className: 'bar',

View file

@ -29,6 +29,7 @@ export default () => {
const window = PopupWindow({ const window = PopupWindow({
name: 'osd', name: 'osd',
anchor: ['bottom'], anchor: ['bottom'],
exclusivity: 'ignore',
closeOnUnfocus: 'stay', closeOnUnfocus: 'stay',
transition: 'slide_up', transition: 'slide_up',
transitionDuration: 200, transitionDuration: 200,

View file

@ -74,7 +74,6 @@ export const Topleft = () => Window({
name: 'cornertl', name: 'cornertl',
layer: 'overlay', layer: 'overlay',
anchor: ['top', 'left'], anchor: ['top', 'left'],
exclusive: false,
visible: true, visible: true,
child: RoundedCorner('topleft', { className: 'corner' }), child: RoundedCorner('topleft', { className: 'corner' }),
}); });
@ -82,7 +81,6 @@ export const Topright = () => Window({
name: 'cornertr', name: 'cornertr',
layer: 'overlay', layer: 'overlay',
anchor: ['top', 'right'], anchor: ['top', 'right'],
exclusive: false,
visible: true, visible: true,
child: RoundedCorner('topright', { className: 'corner' }), child: RoundedCorner('topright', { className: 'corner' }),
}); });
@ -90,7 +88,6 @@ export const Bottomleft = () => Window({
name: 'cornerbl', name: 'cornerbl',
layer: 'overlay', layer: 'overlay',
anchor: ['bottom', 'left'], anchor: ['bottom', 'left'],
exclusive: false,
visible: true, visible: true,
child: RoundedCorner('bottomleft', { className: 'corner' }), child: RoundedCorner('bottomleft', { className: 'corner' }),
}); });
@ -98,7 +95,6 @@ export const Bottomright = () => Window({
name: 'cornerbr', name: 'cornerbr',
layer: 'overlay', layer: 'overlay',
anchor: ['bottom', 'right'], anchor: ['bottom', 'right'],
exclusive: false,
visible: true, visible: true,
child: RoundedCorner('bottomright', { className: 'corner' }), child: RoundedCorner('bottomright', { className: 'corner' }),
}); });

Binary file not shown.