python-eel/Eel

Unable to set the window size

Open

#489 建立於 2021年5月31日

在 GitHub 查看
 (4 留言) (0 反應) (0 負責人)Python (570 fork)batch import
help wanted

倉庫指標

Star
 (5,980 star)
PR 合併指標
 (30 天內沒有已合併 PR)

描述

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))

貢獻者指南