python-eel/Eel

Unable to set the window size

オープン

#489 opened on 2021/05/31

 (4 件のコメント) (0 件のリアクション) (0 人の担当者)Python (570 件のフォーク)batch import
help wanted

Repository metrics

Stars
 (5,980 個のスター)
PR merge metrics
 (PR metrics pending)

説明

The browser window for the application always opens in full-screen mode despite specifying the size and position. How do I get around this and set the appropriate size.

Code snippet(s) Here is some code that can be easily used to reproduce the problem or understand what I need help with. Python file:

import eel

eel.init('web')

eel.start('index.html', size=(1280, 720))

HTML:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Game layout test</title>
</head>
<body bgcolor="red">
    <h1>Test</h1>
</body>
</html>

Desktop:

  • OS: Windows 10
  • Browser: Chrome (Version 91.0.4472.77 (Official Build) (64-bit))

コントリビューターガイド