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',
layer: 'overlay',
anchor: ['top', 'left', 'right'],
exclusive: true,
exclusivity: 'exclusive',
child: Revealer({
child: CenterBox({
className: 'bar',

View file

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

View file

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

Binary file not shown.