fix weird abrupt change (#403)

This commit is contained in:
end-4
2024-04-12 15:13:24 +07:00
parent 1e97c21e3d
commit d7849ef51b
3 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ export default (id = '') => PopupWindow({
// exclusivity: 'ignore',
keymode: 'exclusive',
visible: false,
anchor: ['top'],
anchor: ['top', 'bottom'],
layer: 'overlay',
child: Widget.Box({
vertical: true,
@@ -234,7 +234,6 @@ export default () => {
`,
children: [Widget.EventBox({
hexpand: true,
vexpand: true,
onPrimaryClick: () => {
App.closeWindow('overview');
Utils.timeout(POPUP_CLOSE_TIME, () => Hyprland.messageAsync(`dispatch workspace ${index}`));
@@ -54,7 +54,6 @@ export const SearchAndWindows = () => {
const resultsBox = Widget.Box({
className: 'overview-search-results',
vertical: true,
vexpand: true,
});
const resultsRevealer = Widget.Revealer({
transitionDuration: userOptions.animations.durationLarge,