We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Windowが開く際、New Windowとは別に画面左上にWindowが一瞬描画されたのち New Windowが開きます。 別Windowが描画されるときとされないときがあります。
PySimpleGUI では同様の症状は見られませんでした。 TkEasyGUI自体のVersionはあんまり関係ないように思います。
import TkEasyGUI as eg main_window = eg.Window( "Main Window", layout=[[eg.Button("New Window", key="new-window")]], size=(200, 100) ) while main_window.is_alive(): event, _ = main_window.read() if event == eg.WIN_CLOSED: break if event == "new-window": new_window = eg.Window( "New Window", layout=[[eg.Text("New Window")]], size=(200, 100) ) while new_window.is_alive(): if new_window.read()[0] == eg.WIN_CLOSED: new_window.close()
The text was updated successfully, but these errors were encountered:
Windowsでいろいろ試しましたが、確かに、パパッと出てしまいますね。 macOSで開発しているので、あまり気付きませんでした。 ウィンドの起動プロセスを見直してみます。
Sorry, something went wrong.
fixed New Windowが開く際、一瞬画面左上に描画される #102
21f13e2
修正しました! ご報告ありがとうございました!! v1.0.18で反映されました。 https://github.com/kujirahand/tkeasygui-python/releases/tag/1.0.18
No branches or pull requests
New Windowが開く際、New Windowとは別に画面左上にWindowが一瞬描画されたのち
New Windowが開きます。
別Windowが描画されるときとされないときがあります。
PySimpleGUI では同様の症状は見られませんでした。
TkEasyGUI自体のVersionはあんまり関係ないように思います。
The text was updated successfully, but these errors were encountered: