Made terms clearer in gui.py
parent
c586e480ed
commit
fe8612d944
|
@ -23,7 +23,7 @@ class TextureConverterGUI:
|
||||||
self.instruction_frame.pack(fill='x', padx=10, pady=10)
|
self.instruction_frame.pack(fill='x', padx=10, pady=10)
|
||||||
tk.Label(
|
tk.Label(
|
||||||
self.instruction_frame,
|
self.instruction_frame,
|
||||||
text="Do you want to convert installed resource packs, or convert a single zip file?").pack(
|
text="Do you want to convert installed resource packs, or convert a single folder?").pack(
|
||||||
side='left',
|
side='left',
|
||||||
fill='x',
|
fill='x',
|
||||||
expand=True)
|
expand=True)
|
||||||
|
@ -38,7 +38,7 @@ class TextureConverterGUI:
|
||||||
entries = [
|
entries = [
|
||||||
('all', 'Find Minecraft resource packs installed in your minecraft folders and convert those automatically'),
|
('all', 'Find Minecraft resource packs installed in your minecraft folders and convert those automatically'),
|
||||||
('default', 'Convert the default resource pack'),
|
('default', 'Convert the default resource pack'),
|
||||||
('other', 'Choose a file to convert manually')
|
('other', 'Choose a folder to convert manually')
|
||||||
]
|
]
|
||||||
|
|
||||||
for entry in entries:
|
for entry in entries:
|
||||||
|
|
Loading…
Reference in New Issue