Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

[Bug?] [Solved] Menu not generating an event on latest Raspbian Pi4

オープン
#6,860 コメント 13 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
4/5
見積もり時間
3〜5日
初心者へのやさしさ
25/100
issue の種類
バグ
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
python
領域
desktop

調査の方向性

Pi4 Bookworm 上で sg.Menu と window.read を使用する最小再現コードから始め、その動作を報告されている Ubuntu デスクトップでの動作と比較します。New User をクリックするとイベントが発生するか確認します。プラットフォーム固有の原因を特定して文書化するか、期待されるメニューイベントを復元できれば完了です。

索引モデルが issue の本文から書いたものです。

説明

Bug?

Operating System

bookworm on Pi4
glibc 2.36
3.11.2 (main, Nov 30 2024, 21:22:50) [GCC 12.2.0]3.11.2 (main, Nov 30 2024, 21:22:50) [GCC 12.2.0]

PySimpleGUI 5.0.8
tkinter 8.6.13
Python version 3.11.2 (main, Nov 30 2024, 21:22:50) [GCC 12.2.0]

Your Experience In Months or Years (optional)

Years Python programming experience
20

Years Programming experience overall
40

Have used another Python GUI Framework? (tkinter, Qt, etc) (yes/no is fine)
yes


Troubleshooting

These items may solve your problem. Please check those you've done by changing - [ ] to - [X]

  • Searched main docs for your problem PySimpleGUI Documenation
  • Looked for Demo Programs that are similar to your goal. It is recommend you use the Demo Browser! Demo Programs
  • None of your GUI code was generated by an AI algorithm like GPT
  • If not tkinter - looked for Demo Programs for specific port
  • For non tkinter - Looked at readme for your specific port if not PySimpleGUI (Qt, WX, Remi)
  • Run your program outside of your debugger (from a command line)
  • Searched through Issues (open and closed) to see if already reported Issues.PySimpleGUI.com
  • Have upgraded to the latest release of PySimpleGUI on PyPI (lastest official version)
  • Tried running the Development Build. Your problem may have already been fixed but not released. Check Home Window for release notes and upgrading capability
  • For licensing questions please email license@PySimpleGUI.com
Detailed Description

JUST A WHOLE LOT OF NOTHING returned on menu click.
Sub-menu pops up and goes away just fine, but no event generated.
Works OK on my Ubuntu desktop - just not here on my Pi4.

import PySimpleGUI as sg

layoutPRINT = [
    [sg.Button('Print your TAB',  disabled=False, key='-tab_print-')],
    [sg.Button('and Finalize it', disabled=False, key='-tab_erase-')],
]

menu_def=[['New User',['Register']]]

layout=[
    [sg.Menu(menu_def)],
    [sg.Frame("", layoutPRINT)],
]

window = sg.Window('menu-play', [layout], finalize=True, keep_on_top=True)

while True:

    event, values = window.read(timeout=100)

    if event != sg.TIMEOUT_EVENT:
        print(event)

    if event == sg.WIN_CLOSED:
        break

window.close()
主要言語
Python
スター
13.8k
フォーク
1.8k
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

PySimpleGUI/PySimpleGUI のほかの issue

PySimpleGUI/PySimpleGUI の issue をすべて見る

似ている issue

Python の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。