Skip to content
New issue

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

Dialog is corrupt if too many items #8

Open
eight04 opened this issue Feb 29, 2016 · 1 comment
Open

Dialog is corrupt if too many items #8

eight04 opened this issue Feb 29, 2016 · 1 comment

Comments

@eight04
Copy link
Owner

eight04 commented Feb 29, 2016

#! python3

from tkinter import *
from tkinter.ttk import *
from comiccrawler.gui import select_episodes
from comiccrawler.core import Mission, Episode

# create fake mission

episodes = [Episode("some title #{}".format(i)) for i in range(7 * 1000)]
mission = Mission("Fake mission", "http://www.pixiv.net/", episodes)

def test():
    select_episodes(root, mission)

root = Tk()

Button(root, text="test", command=test).pack()

root.mainloop()

image

With 10k+ items, the dialog doesn't show.

@eight04
Copy link
Owner Author

eight04 commented Apr 16, 2016

After 2016.3.27, the dialog is not corrupt but:
screenshot

@eight04 eight04 changed the title Dialog is interrupted if too many items Dialog is corrupt if too many items Apr 16, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant