fix annoying ass kb focus, i think

This commit is contained in:
end-4
2024-05-02 21:04:48 +07:00
parent 0667478640
commit e6269b919b
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ export const sheetContent = ExpandingIconTabContainer({
export default (id) => PopupWindow({
name: `cheatsheet${id}`,
layer: 'overlay',
keymode: 'exclusive',
keymode: 'on-demand',
visible: false,
child: Widget.Box({
vertical: true,
+1 -1
View File
@@ -5,7 +5,7 @@ import PopupWindow from '../.widgethacks/popupwindow.js';
export default (id = '') => PopupWindow({
name: `overview${id}`,
// exclusivity: 'ignore',
keymode: 'exclusive',
keymode: 'on-demand',
visible: false,
anchor: ['top'],
layer: 'overlay',
+1 -1
View File
@@ -5,7 +5,7 @@ import PopupWindow from '../.widgethacks/popupwindow.js';
export default (id = 0) => PopupWindow({ // On-screen keyboard
name: `session${id}`,
visible: false,
keymode: 'exclusive',
keymode: 'on-demand',
layer: 'overlay',
exclusivity: 'ignore',
anchor: ['top', 'bottom', 'left', 'right'],
+1 -1
View File
@@ -2,7 +2,7 @@ import PopupWindow from '../.widgethacks/popupwindow.js';
import SidebarLeft from "./sideleft.js";
export default () => PopupWindow({
keymode: 'exclusive',
keymode: 'on-demand',
anchor: ['left', 'top', 'bottom'],
name: 'sideleft',
layer: 'overlay',
+1 -1
View File
@@ -40,7 +40,7 @@ const pinButton = Button({
sideleftContent.toggleClassName('sidebar-pinned', self.attribute.enabled);
if (self.attribute.enabled) {
sideleftWindow.exclusivity = 'exclusive';
sideleftWindow.exclusivity = 'on-demad';
}
else {
sideleftWindow.exclusivity = 'normal';
+1 -1
View File
@@ -2,7 +2,7 @@ import PopupWindow from '../.widgethacks/popupwindow.js';
import SidebarRight from "./sideright.js";
export default () => PopupWindow({
keymode: 'exclusive',
keymode: 'on-demand',
anchor: ['right', 'top', 'bottom'],
name: 'sideright',
layer: 'overlay',