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

Logo.ico missing #1

Open
gnollhide opened this issue Dec 21, 2017 · 2 comments
Open

Logo.ico missing #1

gnollhide opened this issue Dec 21, 2017 · 2 comments

Comments

@gnollhide
Copy link

In Ubuntu 17.04, running StarCategorizer.py in Python 2.7.14 pulls up error

Traceback (most recent call last): File "./StarCategorizer.py", line 153, in <module> viewer = View.View() File "/home/jazz/.local/share/Steam/userdata/(my steam ID)/7/remote/View.py", line 15, in __init__ self.master.iconbitmap(self.resource_path('logo.ico')) File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1701, in wm_iconbitmap return self.tk.call('wm', 'iconbitmap', self._w, bitmap) _tkinter.TclError: bitmap "/home/jazz/.local/share/Steam/userdata/(my steam ID)/7/remote/logo.ico" not defined

If the lines referencing logo.ico in view.py are commented out, it runs just fine.

@gnollhide
Copy link
Author

Just an update, the same logo.ico is missing for the categories popup, which causes it to render a blank grey box. Commenting out window.iconbitmap(self.resource_path('logo.ico')) in view.py causes the box to pull up and work as normal.

@tuong59
Copy link

tuong59 commented May 3, 2022

from tkinter import *
from PIL import Image, ImageTk
from googletrans import Translator

root=Tk()
root.title('google Galaxy')
root.geometry("500x360")
root.iconbitmap('logo.ico')

root.mainloop()
return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
_tkinter.TclError: bitmap "logo.ico" not defined

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants