Skip to content

Commit

Permalink
Fix devtools searching up on search
Browse files Browse the repository at this point in the history
  • Loading branch information
Lleyton Gray committed Dec 6, 2021
1 parent 03256d8 commit a3b80c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skye",
"version": "6.3.0",
"version": "6.3.1",
"sideEffects": false,
"description": "Extensible, fast and innovative web browser with Innatical UI.",
"keywords": [
Expand Down
7 changes: 3 additions & 4 deletions src/main/dialogs/find.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ import { BrowserWindow } from 'electron';
import { Application } from '../application';

export const showFindDialog = async (browserWindow: BrowserWindow) => {
const appWindow = Application.instance.windows.fromBrowserWindow(
browserWindow,
);
const appWindow =
Application.instance.windows.fromBrowserWindow(browserWindow);

const dialog = await Application.instance.dialogs.show({
name: 'find',
browserWindow,
devtools: true,
devtools: false,
getBounds: () => {
const { width } = browserWindow.getContentBounds();
return {
Expand Down

0 comments on commit a3b80c0

Please sign in to comment.